Skip to content

Commit 9bba015

Browse files
committed
Format Python files
1 parent e756157 commit 9bba015

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/python/dynamic_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def show(self) -> None:
4141
def main() -> None:
4242
dynamic_stack = DynamicStack()
4343

44-
print(f"Push(1,2,4):")
44+
print("Push(1,2,4):")
4545
dynamic_stack.push(1)
4646
dynamic_stack.push(2)
4747
dynamic_stack.push(4)

src/python/fibonacci_iterative.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
execution of algorithms in seconds
66
"""
77

8-
import functools
98
import time
109

1110

src/python/lz77.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import io
21
import sys
32

43

0 commit comments

Comments
 (0)