Merge pull request #1503 from tybug/typing

Type `Terminal.__init__`
This commit is contained in:
Erez Shinan 2025-01-04 11:12:30 +01:00 committed by GitHub
commit aa3f6c234e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class Terminal(Symbol):
is_term: ClassVar[bool] = True
def __init__(self, name, filter_out=False):
def __init__(self, name: str, filter_out: bool = False) -> None:
self.name = name
self.filter_out = filter_out