Added type hint for open_files.
This commit is contained in:
parent
4a1ec42656
commit
2012ee941c
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from utils import Utils
|
from utils import Utils
|
||||||
from file import FileActions
|
from file import FileActions, File
|
||||||
from ui import GUI
|
from ui import GUI
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ class BreadEditor:
|
||||||
|
|
||||||
self.gui.connect_gui(self)
|
self.gui.connect_gui(self)
|
||||||
|
|
||||||
self.open_files = {}
|
self.open_files: dict[str, File] = {}
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
self.utils.popup_init()
|
self.utils.popup_init()
|
||||||
|
|
Loading…
Reference in a new issue