diff --git a/monitor.py b/monitor.py index 5acbcbc4..ba634c51 100644 --- a/monitor.py +++ b/monitor.py @@ -439,7 +439,7 @@ class EDLogs(FileSystemEventHandler): new_journal_file = None if logfile: - loghandle.seek(0, SEEK_END) # required to make macOS notice log change over SMB. # TODO: Do we need this? + loghandle.seek(0, SEEK_END) # required for macOS to notice log change over SMB. TODO: Do we need this? loghandle.seek(log_pos, SEEK_SET) # reset EOF flag # TODO: log_pos reported as possibly unbound for line in loghandle: # Paranoia check to see if we're shutting down diff --git a/myNotebook.py b/myNotebook.py index 528664ba..64624550 100644 --- a/myNotebook.py +++ b/myNotebook.py @@ -57,7 +57,7 @@ class Label(tk.Label): super().__init__(master, **kw) -class Entry(ttk.Entry): # type: ignore +class Entry(ttk.Entry): """Custom t(t)k.Entry class to fix some display issues.""" # DEPRECATED: Migrate to ttk.Entry. Will remove in 5.12 or later.