Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2022-12-29 22:56:02 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-12-29 22:56:02 +0300
commit6ff261bf600f82492c843c7c7bf2640c67f1b315 (patch)
tree380f34222a3d4940c980b72086d385b6884a275a /scripts
parent3d27187fd85a35b52b17388453a1f699fa860d51 (diff)
cq: Use specific error codes with noqa
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_ui_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_ui_types.py b/scripts/generate_ui_types.py
index 568aef785..1d44ed247 100755
--- a/scripts/generate_ui_types.py
+++ b/scripts/generate_ui_types.py
@@ -44,7 +44,7 @@ ATTR = '\n %s: %s'
GET_BUILDER_OVERLOAD = '''
@overload
-def get_builder(file_name: Literal['%s'], widgets: list[str] = ...) -> %s: ... # noqa''' # noqa
+def get_builder(file_name: Literal['%s'], widgets: list[str] = ...) -> %s: ... # noqa''' # noqa: E501
GET_BUILDER = '''\n\n
def get_builder(file_name: str, widgets: list[str] = ...) -> Builder: ...'''