Skip to content

Commit 99ffcb7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7427a23 commit 99ffcb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/arrays/dynamic_array.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get(self, index: int) -> int:
7878
if index < 0 or index >= self.size:
7979
raise IndexError("index out of range")
8080
return self.array[index]
81-
81+
8282
def __setitem__(self, index: int, value: int) -> None:
8383
if index < 0 or index >= self.size:
8484
raise IndexError("index out of range")

0 commit comments

Comments
 (0)