diff --git a/crowdin_api/api_resources/bundles/resource.py b/crowdin_api/api_resources/bundles/resource.py index bd64b4e..85b1f6b 100644 --- a/crowdin_api/api_resources/bundles/resource.py +++ b/crowdin_api/api_resources/bundles/resource.py @@ -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}" diff --git a/setup.cfg b/setup.cfg index fdbb3b3..1981144 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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