diff --git a/setup.py b/setup.py index 6ce263e77..f769665ee 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ "pre-commit>=3.3.0,<4.0.0", "pylint==2.17.5", "flake8-unused-arguments", - "pyright==1.1.324", + "pyright==1.1.325", # notebooks tests "nbformat", "nbconvert", diff --git a/src/kili/services/export/format/base.py b/src/kili/services/export/format/base.py index dcb8ef138..1b91805ae 100644 --- a/src/kili/services/export/format/base.py +++ b/src/kili/services/export/format/base.py @@ -95,7 +95,7 @@ def _is_job_compatible(self, job: Job) -> bool: """Check if the export label format is compatible with the job.""" @property - def compatible_jobs(self) -> Tuple[str]: + def compatible_jobs(self) -> Tuple[str, ...]: """Get all job names compatible with the export format.""" return tuple( job_name