Skip to content

Commit

Permalink
fix(app): restore old type declaration with Non initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
friday committed Nov 27, 2022
1 parent 43d7683 commit cd82665
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ulauncher/ui/UlauncherApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ class UlauncherApp(Gtk.Application):
# new instances sends the signals to the registered one
# So all methods except __init__ runs on the main app
_query = ""
window: UlauncherWindow
preferences: PreferencesWindow
_appindicator: AppIndicator
window = None # type: UlauncherWindow
preferences = None # type: PreferencesWindow
_appindicator = None # type: AppIndicator
_current_accel_name = None

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit cd82665

Please sign in to comment.