mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-17 03:07:35 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
eec1c3a98b
commit
e89bb5c3a9
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user