Skip to content

Commit

Permalink
"auto_clear" in __slots__
Browse files Browse the repository at this point in the history
  • Loading branch information
Tkd-Alex committed Nov 21, 2021
1 parent 3e80117 commit 8d0d90d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions TwitchChannelPointsMiner/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class LoggerSettings:
"emoji",
"colored",
"color_palette",
"auto_clear",
"telegram",
]

Expand All @@ -75,8 +76,8 @@ def __init__(
file_level: int = logging.DEBUG,
emoji: bool = platform.system() != "Windows",
colored: bool = False,
auto_clear: bool = True,
color_palette: ColorPalette = ColorPalette(),
auto_clear: bool = True,
telegram: Telegram or None = None,
):
self.save = save
Expand All @@ -85,8 +86,8 @@ def __init__(
self.file_level = file_level
self.emoji = emoji
self.colored = colored
self.auto_clear = auto_clear
self.color_palette = color_palette
self.auto_clear = auto_clear
self.telegram = telegram


Expand Down

0 comments on commit 8d0d90d

Please sign in to comment.