[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-10-01 09:05:40 +00:00
parent eec1c3a98b
commit e89bb5c3a9

View File

@ -16,6 +16,7 @@ class Node:
>>> Node(None)
Node(None)
"""
def __init__(self, data) -> None:
self.data: int = data
self.next_node: Node | None = None