From e531db8d488c3cda33bec22c26343e95b1109aae Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Thu, 4 Jan 2024 15:30:02 -0500 Subject: [PATCH] [Flake8] Ignore Type Hint Missing It's not missing. They're there. --- EDMC.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EDMC.py b/EDMC.py index 81c4ddc8..a237f4ea 100755 --- a/EDMC.py +++ b/EDMC.py @@ -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())