Skip to content

Commit

Permalink
Suppress flake8 error
Browse files Browse the repository at this point in the history
- python3-only code
  • Loading branch information
PeterSurda committed Oct 20, 2024
1 parent 79ba94b commit 1ee3883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitmessagekivy/baseclass/draft.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self, *args, **kwargs):
def init_ui(self, dt=0):
"""Initialize the UI and load draft messages"""
self.load_draft()
logger.debug(f"UI initialized with dt: {dt}")
logger.debug(f"UI initialized with dt: {dt}") # noqa: E999

def load_draft(self, where="", what=""):
"""Load the list of draft messages"""
Expand Down

0 comments on commit 1ee3883

Please sign in to comment.