fmt more stuff
This commit is contained in:
@@ -47,7 +47,7 @@ class MainApplication(Adw.Application):
|
|||||||
None,
|
None,
|
||||||
)
|
)
|
||||||
|
|
||||||
self.window: "MainWindow" | None = None
|
self.window: MainWindow | None = None
|
||||||
self.connect("activate", self.on_activate)
|
self.connect("activate", self.on_activate)
|
||||||
self.connect("shutdown", self.on_shutdown)
|
self.connect("shutdown", self.on_shutdown)
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ class GKVStore(GObject.GObject, Gio.ListModel, Generic[K, V]):
|
|||||||
self.gtype = gtype
|
self.gtype = gtype
|
||||||
self.key_gen = key_gen
|
self.key_gen = key_gen
|
||||||
# From Python 3.7 onwards dictionaries are ordered by default
|
# From Python 3.7 onwards dictionaries are ordered by default
|
||||||
self._items: "dict[K, V]" = dict()
|
self._items: dict[K, V] = dict()
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
# #
|
# #
|
||||||
|
|||||||
Reference in New Issue
Block a user