Skip to content

Commit b4974c9

Browse files
committed
ignore log_bump, just use _log_bump from being loggified
Signed-off-by: Zen <[email protected]>
1 parent bdff0eb commit b4974c9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/zenlib/types/nodupflatlist.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "desultory"
2-
__version__ = "1.1.0"
2+
__version__ = "1.1.1"
33

44

55
from zenlib.logging import ClassLogger
@@ -8,10 +8,7 @@
88

99
class NoDupFlatList(ClassLogger, list):
1010
"""List that automatically filters duplicate elements when appended and concatenated."""
11-
1211
def __init__(self, no_warn=False, *args, **kwargs):
13-
if log_bump := kwargs.pop("log_bump", 0):
14-
kwargs["_log_bump"] = log_bump
1512
super().__init__(*args, **kwargs)
1613
self.no_warn = no_warn
1714

0 commit comments

Comments
 (0)