Skip to content

Commit 8bfd1c8

Browse files
authored
fix: mypy 0.991 issues (TheAlgorithms#7988)
* fix: mypy 0.991 issues * fix: invalid condition for base case
1 parent 4ce8ad9 commit 8bfd1c8

File tree

3 files changed

+370
-369
lines changed

3 files changed

+370
-369
lines changed

conversions/decimal_to_any.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ def decimal_to_any(num: int, base: int) -> str:
7676
div, mod = divmod(num, base)
7777
if base >= 11 and 9 < mod < 36:
7878
actual_value = ALPHABET_VALUES[str(mod)]
79-
mod = actual_value
80-
new_value += str(mod)
79+
else:
80+
actual_value = str(mod)
81+
new_value += actual_value
8182
div = num // base
8283
num = div
8384
if div == 0:

data_structures/linked_list/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __str__(self) -> str:
4949
>>> print(linked_list)
5050
9 --> 14 --> 23
5151
"""
52-
if not self.is_empty:
52+
if self.is_empty():
5353
return ""
5454
else:
5555
iterate = self.head

0 commit comments

Comments
 (0)