1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

[Nit] Clarify Comments

This commit is contained in:
David Sangrey 2024-03-27 22:21:26 -04:00
parent 1800f8f0b1
commit 56a4ae25e0
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.