Skip to content

Commit 8fff79e

Browse files
committed
Silence the McCabe checker on two methods, refs #276.
1 parent f69b0da commit 8fff79e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

client/deis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ def providers(self, args):
16211621
"""
16221622
return self.providers_list(args)
16231623

1624-
def providers_create(self, args):
1624+
def providers_create(self, args): # noqa
16251625
"""
16261626
Create a provider for use by Deis
16271627
@@ -1679,7 +1679,7 @@ def providers_create(self, args):
16791679
else:
16801680
raise ResponseError(response)
16811681

1682-
def providers_discover(self, args):
1682+
def providers_discover(self, args): # noqa
16831683
"""
16841684
Discover and update provider credentials
16851685

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[flake8]
22
max-line-length = 99
33
exclude = */api/migrations/*,*/build/*,*/venv/*,*/virtualenv/*
4-
max-complexity = 14
4+
max-complexity = 12

0 commit comments

Comments
 (0)