Skip to content

Commit 42904b7

Browse files
committed
fixed pre-commit issue
1 parent 17cc73b commit 42904b7

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

black.exe

106 KB
Binary file not shown.

data_structures/stacks/TwoQueuedStack.py renamed to data_structures/stacks/two_queued_stack.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ def __init__(self) -> None:
55
66
>>> stack = StackUsingQueues()
77
"""
8-
self.queue1:list = []
9-
self.queue2:list = []
8+
self.queue1: list = []
9+
self.queue2: list = []
1010

11-
def push(self, item:int) -> None:
11+
def push(self, item: int) -> None:
1212
"""
1313
Push an item onto the stack.
1414

mypy.exe

106 KB
Binary file not shown.

mypyc.exe

106 KB
Binary file not shown.

pre-commit.exe

106 KB
Binary file not shown.

ruff.exe

17.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)