Skip to content

Commit 69171a9

Browse files
cclaussgithub-actions
and
github-actions
authored
The new version of flake8 is linting f-strings (#1976)
* The new version of flake8 is linting f-strings * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent ba8b156 commit 69171a9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

DIRECTORY.md

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
* Heap
109109
* [Binomial Heap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/heap/binomial_heap.py)
110110
* [Heap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/heap/heap.py)
111+
* [Max Heap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/heap/max_heap.py)
111112
* [Min Heap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/heap/min_heap.py)
112113
* Linked List
113114
* [Circular Linked List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/circular_linked_list.py)
@@ -582,6 +583,7 @@
582583
* [Heap Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
583584
* [I Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/i_sort.py)
584585
* [Insertion Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/insertion_sort.py)
586+
* [Iterative Merge Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/iterative_merge_sort.py)
585587
* [Merge Sort](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py)
586588
* [Odd Even Transposition Parallel](https://github.com/TheAlgorithms/Python/blob/master/sorts/odd_even_transposition_parallel.py)
587589
* [Odd Even Transposition Single Threaded](https://github.com/TheAlgorithms/Python/blob/master/sorts/odd_even_transposition_single_threaded.py)

digital_image_processing/resize/resize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class NearestNeighbour:
1111

1212
def __init__(self, img, dst_width: int, dst_height: int):
1313
if dst_width < 0 or dst_height < 0:
14-
raise ValueError(f"Destination width/height should be > 0")
14+
raise ValueError("Destination width/height should be > 0")
1515

1616
self.img = img
1717
self.src_w = img.shape[1]

0 commit comments

Comments
 (0)