Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-bodnar committed May 31, 2023
1 parent 6848ed6 commit 6ab7015
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crowdin_api/api_resources/bundles/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_bundles_path(self, projectId: int, bundleId: Optional[int] = None):

return f"projects/{projectId}/bundles"

def get_bundles_exports_path(self, projectId:int, bundleId:int, exportId: Optional[str] = None):
def get_bundles_exports_path(self, projectId: int, bundleId: int, exportId: Optional[str] = None):
bundles_path = self.get_bundles_path(projectId, bundleId)
if exportId:
return f"{bundles_path}/exports/{exportId}"
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[flake8]
max-complexity = 6
statistics = True
max-line-length = 100
max-line-length = 120
doctests = True

# Flake plugins:
Expand All @@ -17,6 +17,7 @@ no-accept-encodings = True
ignore = C812, # missing trailing comma
C815, # missing trailing comma in Python 3.5+
C816, # missing trailing comma in Python 3.6+
C901, # function is too complex
D100, # Missing docstring in public module
D104, # Missing docstring in public package
D202, # No blank lines allowed after function docstring
Expand Down

0 comments on commit 6ab7015

Please sign in to comment.