We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d1b795 commit 3b0d81fCopy full SHA for 3b0d81f
data_structures/linked_list/singly_linked_list.py
@@ -2,6 +2,7 @@
2
3
from collections.abc import Iterator
4
from dataclasses import dataclass
5
+from doctest import testmod
6
from typing import Any
7
8
@@ -492,7 +493,7 @@ def test_singly_linked_list_2() -> None:
492
493
494
495
def main():
- from doctest import testmod
496
+
497
498
testmod()
499
0 commit comments