We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f5b17 commit 77e6ef4Copy full SHA for 77e6ef4
shopify/yamlobjects.py
@@ -15,6 +15,5 @@ class YAMLHashWithIndifferentAccess(yaml.YAMLObject):
15
def from_yaml(cls, loader, node):
16
return loader.construct_mapping(node, cls)
17
18
-
19
except ImportError:
20
pass
test/base_test.py
@@ -107,7 +107,7 @@ def test_setting_with_user_and_pass_strips_them(self):
107
url="https://this-is-my-test-show.myshopify.com/admin/shop.json",
108
method="GET",
109
body=self.load_fixture("shop"),
110
- headers={"Authorization": u"Basic dXNlcjpwYXNz"},
+ headers={"Authorization": "Basic dXNlcjpwYXNz"},
111
)
112
API_KEY = "user"
113
PASSWORD = "pass"
0 commit comments