3
0
Fork 0

fix: fix 'trailing-whitespace' for pylint

This commit is contained in:
Lance Edgar 2025-08-30 18:56:04 -05:00
parent 1a0fee3582
commit 74c3db6e3a
2 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@ enable=anomalous-backslash-in-string,
invalid-name, invalid-name,
redefined-argument-from-local, redefined-argument-from-local,
too-few-public-methods, too-few-public-methods,
trailing-whitespace,
unspecified-encoding, unspecified-encoding,
unused-argument, unused-argument,
unused-import, unused-import,

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# WuttJamaican -- Base package for Wutta Framework # WuttJamaican -- Base package for Wutta Framework
# Copyright © 2023-2024 Lance Edgar # Copyright © 2023-2025 Lance Edgar
# #
# This file is part of Wutta Framework. # This file is part of Wutta Framework.
# #
@ -97,7 +97,7 @@ class ConsoleProgress(ProgressBase):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
super().__init__(*args) super().__init__(*args)
self.stderr = kwargs.get('stderr', sys.stderr) self.stderr = kwargs.get('stderr', sys.stderr)
self.stderr.write(f"\n{self.message}...\n") self.stderr.write(f"\n{self.message}...\n")