1
0
forked from clan/clan-core

formatter fixes

This commit is contained in:
Jörg Thalheim 2024-05-28 13:41:52 +02:00
parent 5e768493d9
commit ac82003883
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ class MainApplication(Adw.Application):
None,
)
self.window: "MainWindow" | None = None
self.window: MainWindow | None = None
self.connect("activate", self.on_activate)
self.connect("shutdown", self.on_shutdown)

View File

@ -29,7 +29,7 @@ class GKVStore(GObject.GObject, Gio.ListModel, Generic[K, V]):
self.gtype = gtype
self.key_gen = key_gen
# From Python 3.7 onwards dictionaries are ordered by default
self._items: "dict[K, V]" = dict()
self._items: dict[K, V] = dict()
##################################
# #