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 2d9d5da
Show file tree
Hide file tree
Showing 2 changed files with 5 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
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
[flake8]
max-complexity = 6
statistics = True
max-line-length = 100
max-line-length = 120
doctests = True

# https://www.flake8rules.com/rules/C901.html
ignore=C901

# Flake plugins:
inline-quotes = double
isort-show-traceback = True
Expand Down

0 comments on commit 2d9d5da

Please sign in to comment.