From 9a867100d905d991784a4d35f022321dfd394bfb Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 31 May 2023 14:39:02 +0300 Subject: [PATCH] chore: fix lint errors --- crowdin_api/api_resources/bundles/resource.py | 2 +- setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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..b528b37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,8 +5,9 @@ [flake8] max-complexity = 6 statistics = True -max-line-length = 100 +max-line-length = 120 doctests = True +ignore=C901 # Flake plugins: inline-quotes = double