Skip to content

Commit 1317b95

Browse files
committed
Remove invalid-name from list of ignored errors and make changes
1 parent 38f2ea6 commit 1317b95

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pylintrc

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ disable=abstract-method,
7676
global-statement,
7777
hex-method,
7878
idiv-method,
79-
invalid-name,
8079
implicit-str-concat-in-sequence,
8180
import-error,
8281
import-self,

test/base_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_activate_session_should_set_site_given_version(self):
4141
self.assertEqual("https://shop2.myshopify.com/admin/api/2019-04", shopify.Shop.site)
4242
self.assertIsNone(ActiveResource.headers)
4343

44-
def test_clear_session_should_clear_site_and_headers_from_Base(self):
44+
def test_clear_session_should_clear_site_and_headers_from_base(self):
4545
shopify.ShopifyResource.activate_session(self.session1)
4646
shopify.ShopifyResource.clear_session()
4747

test/session_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_setup_api_key_and_secret_for_all_sessions(self):
5050
def test_use_https_protocol_by_default_for_all_sessions(self):
5151
self.assertEqual("https", shopify.Session.protocol)
5252

53-
def test_temp_reset_shopify_ShopifyResource_site_to_original_value(self):
53+
def test_temp_reset_shopify_shopify_resource_site_to_original_value(self):
5454
shopify.Session.setup(api_key="key", secret="secret")
5555
session1 = shopify.Session("fakeshop.myshopify.com", "2019-04", "token1")
5656
shopify.ShopifyResource.activate_session(session1)

0 commit comments

Comments
 (0)