Skip to content

Commit

Permalink
fix: initialize custom string class with filter (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Snoopy1866 authored Dec 30, 2024
1 parent becb224 commit 890612e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __str__(self) -> str:

class Filter(str):
def __init__(self, filter: str) -> None:
super().__init__()
super().__init__(filter)
self.filter = filter

def to_markdown(self) -> str:
Expand Down

0 comments on commit 890612e

Please # to comment.