Skip to content

Commit 4d0c830

Browse files
CaedenPHcclausspre-commit-ci[bot]dhruvmanila
authored
Add flake8 pluin flake8 bugbear to pre-commit (TheAlgorithms#7132)
* ci(pre-commit): Add ``flake8-builtins`` additional dependency to ``pre-commit`` (TheAlgorithms#7104) * refactor: Fix ``flake8-builtins`` (TheAlgorithms#7104) * fix(lru_cache): Fix naming conventions in docstrings (TheAlgorithms#7104) * ci(pre-commit): Order additional dependencies alphabetically (TheAlgorithms#7104) * fix(lfu_cache): Correct function name in docstring (TheAlgorithms#7104) * Update strings/snake_case_to_camel_pascal_case.py Co-authored-by: Christian Clauss <[email protected]> * Update data_structures/stacks/next_greater_element.py Co-authored-by: Christian Clauss <[email protected]> * Update digital_image_processing/index_calculation.py Co-authored-by: Christian Clauss <[email protected]> * Update graphs/prim.py Co-authored-by: Christian Clauss <[email protected]> * Update hashes/djb2.py Co-authored-by: Christian Clauss <[email protected]> * refactor: Rename `_builtin` to `builtin_` ( TheAlgorithms#7104) * fix: Rename all instances (TheAlgorithms#7104) * refactor: Update variable names (TheAlgorithms#7104) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: Create ``tox.ini`` and ignore ``A003`` (TheAlgorithms#7123) * revert: Remove function name changes (TheAlgorithms#7104) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Rename tox.ini to .flake8 * Update data_structures/heap/heap.py Co-authored-by: Dhruv Manilawala <[email protected]> * refactor: Rename `next_` to `next_item` (TheAlgorithms#7104) * ci(pre-commit): Add `flake8` plugin `flake8-bugbear` (TheAlgorithms#7127) * refactor: Follow `flake8-bugbear` plugin (TheAlgorithms#7127) * fix: Correct `knapsack` code (TheAlgorithms#7127) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: Christian Clauss <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Dhruv Manilawala <[email protected]>
1 parent f176786 commit 4d0c830

File tree

71 files changed

+137
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+137
-124
lines changed

.pre-commit-config.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ repos:
4040
- --ignore=E203,W503
4141
- --max-complexity=25
4242
- --max-line-length=88
43-
additional_dependencies: [flake8-builtins, pep8-naming]
43+
additional_dependencies:
44+
- flake8-bugbear
45+
- flake8-builtins
46+
- pep8-naming
4447

4548
- repo: https://github.com/pre-commit/mirrors-mypy
4649
rev: v0.982

arithmetic_analysis/jacobi_iteration_method.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def jacobi_iteration_method(
110110
strictly_diagonally_dominant(table)
111111

112112
# Iterates the whole matrix for given number of times
113-
for i in range(iterations):
113+
for _ in range(iterations):
114114
new_val = []
115115
for row in range(rows):
116116
temp = 0

arithmetic_analysis/newton_forward_interpolation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def ucal(u: float, p: int) -> float:
2323
def main() -> None:
2424
n = int(input("enter the numbers of values: "))
2525
y: list[list[float]] = []
26-
for i in range(n):
26+
for _ in range(n):
2727
y.append([])
2828
for i in range(n):
2929
for j in range(n):

arithmetic_analysis/secant_method.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def secant_method(lower_bound: float, upper_bound: float, repeats: int) -> float
2020
"""
2121
x0 = lower_bound
2222
x1 = upper_bound
23-
for i in range(0, repeats):
23+
for _ in range(0, repeats):
2424
x0, x1 = x1, x1 - (f(x1) * (x1 - x0)) / (f(x1) - f(x0))
2525
return x1
2626

audio_filters/butterworth_filter.py

+16-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
def make_lowpass(
14-
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2)
14+
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2) # noqa: B008
1515
) -> IIRFilter:
1616
"""
1717
Creates a low-pass filter
@@ -39,7 +39,7 @@ def make_lowpass(
3939

4040

4141
def make_highpass(
42-
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2)
42+
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2) # noqa: B008
4343
) -> IIRFilter:
4444
"""
4545
Creates a high-pass filter
@@ -67,7 +67,7 @@ def make_highpass(
6767

6868

6969
def make_bandpass(
70-
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2)
70+
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2) # noqa: B008
7171
) -> IIRFilter:
7272
"""
7373
Creates a band-pass filter
@@ -96,7 +96,7 @@ def make_bandpass(
9696

9797

9898
def make_allpass(
99-
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2)
99+
frequency: int, samplerate: int, q_factor: float = 1 / sqrt(2) # noqa: B008
100100
) -> IIRFilter:
101101
"""
102102
Creates an all-pass filter
@@ -121,7 +121,10 @@ def make_allpass(
121121

122122

123123
def make_peak(
124-
frequency: int, samplerate: int, gain_db: float, q_factor: float = 1 / sqrt(2)
124+
frequency: int,
125+
samplerate: int,
126+
gain_db: float,
127+
q_factor: float = 1 / sqrt(2), # noqa: B008
125128
) -> IIRFilter:
126129
"""
127130
Creates a peak filter
@@ -150,7 +153,10 @@ def make_peak(
150153

151154

152155
def make_lowshelf(
153-
frequency: int, samplerate: int, gain_db: float, q_factor: float = 1 / sqrt(2)
156+
frequency: int,
157+
samplerate: int,
158+
gain_db: float,
159+
q_factor: float = 1 / sqrt(2), # noqa: B008
154160
) -> IIRFilter:
155161
"""
156162
Creates a low-shelf filter
@@ -184,7 +190,10 @@ def make_lowshelf(
184190

185191

186192
def make_highshelf(
187-
frequency: int, samplerate: int, gain_db: float, q_factor: float = 1 / sqrt(2)
193+
frequency: int,
194+
samplerate: int,
195+
gain_db: float,
196+
q_factor: float = 1 / sqrt(2), # noqa: B008
188197
) -> IIRFilter:
189198
"""
190199
Creates a high-shelf filter

backtracking/sum_of_subsets.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ def create_state_space_tree(
3939
if sum(path) == max_sum:
4040
result.append(path)
4141
return
42-
for num_index in range(num_index, len(nums)):
42+
for index in range(num_index, len(nums)):
4343
create_state_space_tree(
4444
nums,
4545
max_sum,
46-
num_index + 1,
47-
path + [nums[num_index]],
46+
index + 1,
47+
path + [nums[index]],
4848
result,
49-
remaining_nums_sum - nums[num_index],
49+
remaining_nums_sum - nums[index],
5050
)
5151

5252

boolean_algebra/quine_mc_cluskey.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def decimal_to_binary(no_of_variable: int, minterms: Sequence[float]) -> list[st
5656
temp = []
5757
for minterm in minterms:
5858
string = ""
59-
for i in range(no_of_variable):
59+
for _ in range(no_of_variable):
6060
string = str(minterm % 2) + string
6161
minterm //= 2
6262
temp.append(string)

ciphers/mixed_keyword_cypher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def mixed_keyword(key: str = "college", pt: str = "UNIVERSITY") -> str:
4040
k = 0
4141
for _ in range(r):
4242
s = []
43-
for j in range(len_temp):
43+
for _ in range(len_temp):
4444
s.append(temp[k])
4545
if not (k < 25):
4646
break

ciphers/rabin_miller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def rabin_miller(num: int) -> bool:
1111
s = s // 2
1212
t += 1
1313

14-
for trials in range(5):
14+
for _ in range(5):
1515
a = random.randrange(2, num - 1)
1616
v = pow(a, s, num)
1717
if v != 1:

compression/burrows_wheeler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def reverse_bwt(bwt_string: str, idx_original_string: int) -> str:
154154
)
155155

156156
ordered_rotations = [""] * len(bwt_string)
157-
for x in range(len(bwt_string)):
157+
for _ in range(len(bwt_string)):
158158
for i in range(len(bwt_string)):
159159
ordered_rotations[i] = bwt_string[i] + ordered_rotations[i]
160160
ordered_rotations.sort()

data_structures/binary_tree/binary_search_tree_recursive.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def test_put(self) -> None:
357357
assert t.root.left.left.parent == t.root.left
358358
assert t.root.left.left.label == 1
359359

360-
with self.assertRaises(Exception):
360+
with self.assertRaises(Exception): # noqa: B017
361361
t.put(1)
362362

363363
def test_search(self) -> None:
@@ -369,7 +369,7 @@ def test_search(self) -> None:
369369
node = t.search(13)
370370
assert node.label == 13
371371

372-
with self.assertRaises(Exception):
372+
with self.assertRaises(Exception): # noqa: B017
373373
t.search(2)
374374

375375
def test_remove(self) -> None:
@@ -515,7 +515,7 @@ def test_get_max_label(self) -> None:
515515
assert t.get_max_label() == 14
516516

517517
t.empty()
518-
with self.assertRaises(Exception):
518+
with self.assertRaises(Exception): # noqa: B017
519519
t.get_max_label()
520520

521521
def test_get_min_label(self) -> None:
@@ -524,7 +524,7 @@ def test_get_min_label(self) -> None:
524524
assert t.get_min_label() == 1
525525

526526
t.empty()
527-
with self.assertRaises(Exception):
527+
with self.assertRaises(Exception): # noqa: B017
528528
t.get_min_label()
529529

530530
def test_inorder_traversal(self) -> None:

data_structures/linked_list/circular_linked_list.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,25 +94,25 @@ def test_circular_linked_list() -> None:
9494

9595
try:
9696
circular_linked_list.delete_front()
97-
assert False # This should not happen
97+
raise AssertionError() # This should not happen
9898
except IndexError:
9999
assert True # This should happen
100100

101101
try:
102102
circular_linked_list.delete_tail()
103-
assert False # This should not happen
103+
raise AssertionError() # This should not happen
104104
except IndexError:
105105
assert True # This should happen
106106

107107
try:
108108
circular_linked_list.delete_nth(-1)
109-
assert False
109+
raise AssertionError()
110110
except IndexError:
111111
assert True
112112

113113
try:
114114
circular_linked_list.delete_nth(0)
115-
assert False
115+
raise AssertionError()
116116
except IndexError:
117117
assert True
118118

data_structures/linked_list/doubly_linked_list.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def insert_at_nth(self, index: int, data):
9696
self.tail = new_node
9797
else:
9898
temp = self.head
99-
for i in range(0, index):
99+
for _ in range(0, index):
100100
temp = temp.next
101101
temp.previous.next = new_node
102102
new_node.previous = temp.previous
@@ -145,7 +145,7 @@ def delete_at_nth(self, index: int):
145145
self.tail.next = None
146146
else:
147147
temp = self.head
148-
for i in range(0, index):
148+
for _ in range(0, index):
149149
temp = temp.next
150150
delete_node = temp
151151
temp.next.previous = temp.previous
@@ -194,13 +194,13 @@ def test_doubly_linked_list() -> None:
194194

195195
try:
196196
linked_list.delete_head()
197-
assert False # This should not happen.
197+
raise AssertionError() # This should not happen.
198198
except IndexError:
199199
assert True # This should happen.
200200

201201
try:
202202
linked_list.delete_tail()
203-
assert False # This should not happen.
203+
raise AssertionError() # This should not happen.
204204
except IndexError:
205205
assert True # This should happen.
206206

data_structures/linked_list/middle_element_of_linked_list.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def middle_element(self) -> int | None:
6262

6363
if __name__ == "__main__":
6464
link = LinkedList()
65-
for i in range(int(input().strip())):
65+
for _ in range(int(input().strip())):
6666
data = int(input().strip())
6767
link.push(data)
6868
print(link.middle_element())

data_structures/linked_list/singly_linked_list.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __setitem__(self, index: int, data: Any) -> None:
132132
if not 0 <= index < len(self):
133133
raise ValueError("list index out of range.")
134134
current = self.head
135-
for i in range(index):
135+
for _ in range(index):
136136
current = current.next
137137
current.data = data
138138

@@ -352,13 +352,13 @@ def test_singly_linked_list() -> None:
352352

353353
try:
354354
linked_list.delete_head()
355-
assert False # This should not happen.
355+
raise AssertionError() # This should not happen.
356356
except IndexError:
357357
assert True # This should happen.
358358

359359
try:
360360
linked_list.delete_tail()
361-
assert False # This should not happen.
361+
raise AssertionError() # This should not happen.
362362
except IndexError:
363363
assert True # This should happen.
364364

data_structures/linked_list/skip_list.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def insert(self, key: KT, value: VT):
205205

206206
if level > self.level:
207207
# After level increase we have to add additional nodes to head.
208-
for i in range(self.level - 1, level):
208+
for _ in range(self.level - 1, level):
209209
update_vector.append(self.head)
210210
self.level = level
211211

@@ -407,7 +407,7 @@ def is_sorted(lst):
407407

408408

409409
def pytests():
410-
for i in range(100):
410+
for _ in range(100):
411411
# Repeat test 100 times due to the probabilistic nature of skip list
412412
# random values == random bugs
413413
test_insert()

data_structures/queue/queue_on_list.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get(self):
3737
number of times to rotate queue"""
3838

3939
def rotate(self, rotation):
40-
for i in range(rotation):
40+
for _ in range(rotation):
4141
self.put(self.get())
4242

4343
"""Enqueues {@code item}

data_structures/queue/queue_on_pseudo_stack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get(self) -> Any:
3737
number of times to rotate queue"""
3838

3939
def rotate(self, rotation: int) -> None:
40-
for i in range(rotation):
40+
for _ in range(rotation):
4141
temp = self.stack[0]
4242
self.stack = self.stack[1:]
4343
self.put(temp)

data_structures/stacks/stack.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ def test_stack() -> None:
9292

9393
try:
9494
_ = stack.pop()
95-
assert False # This should not happen
95+
raise AssertionError() # This should not happen
9696
except StackUnderflowError:
9797
assert True # This should happen
9898

9999
try:
100100
_ = stack.peek()
101-
assert False # This should not happen
101+
raise AssertionError() # This should not happen
102102
except StackUnderflowError:
103103
assert True # This should happen
104104

@@ -118,7 +118,7 @@ def test_stack() -> None:
118118

119119
try:
120120
stack.push(200)
121-
assert False # This should not happen
121+
raise AssertionError() # This should not happen
122122
except StackOverflowError:
123123
assert True # This should happen
124124

divide_and_conquer/convex_hull.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -458,16 +458,16 @@ def convex_hull_melkman(points: list[Point]) -> list[Point]:
458458
convex_hull[1] = points[i]
459459
i += 1
460460

461-
for i in range(i, n):
461+
for j in range(i, n):
462462
if (
463-
_det(convex_hull[0], convex_hull[-1], points[i]) > 0
463+
_det(convex_hull[0], convex_hull[-1], points[j]) > 0
464464
and _det(convex_hull[-1], convex_hull[0], points[1]) < 0
465465
):
466466
# The point lies within the convex hull
467467
continue
468468

469-
convex_hull.insert(0, points[i])
470-
convex_hull.append(points[i])
469+
convex_hull.insert(0, points[j])
470+
convex_hull.append(points[j])
471471
while _det(convex_hull[0], convex_hull[1], convex_hull[2]) >= 0:
472472
del convex_hull[1]
473473
while _det(convex_hull[-1], convex_hull[-2], convex_hull[-3]) <= 0:

0 commit comments

Comments
 (0)