1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

[Flake8] Ignore Type Hint Missing

It's not missing. They're there.
This commit is contained in:
David Sangrey 2024-01-04 15:30:02 -05:00
parent 881c94a619
commit e531db8d48
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3
# flake8: noqa TAE001
"""
EDMC.py - Command-line interface. Requires prior setup through the GUI.
@ -164,7 +165,7 @@ def main(): # noqa: C901, CCR001
newversion: EDMCVersion | None = updater.check_appcast()
if newversion:
# LANG: Update Available Text
newverstr = _("{NEWVER} is available").format(NEWVER=newversion.title)
newverstr: str = _("{NEWVER} is available").format(NEWVER=newversion.title)
print(f'{appversion()} ({newverstr})')
else:
print(appversion())