Skip to content

Commit 9c92357

Browse files
Fixed indentation issue (TheAlgorithms#2087)
1 parent 41a5de9 commit 9c92357

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

conversions/decimal_to_any.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,4 @@ def decimal_to_any(num: int, base: int) -> str:
9898

9999
for base in range(2, 37):
100100
for num in range(1000):
101-
assert int(decimal_to_any(num, base), base) == num, (
102-
num, base, decimal_to_any(num, base),
103-
int(decimal_to_any(num, base), base)
104-
)
101+
assert int(decimal_to_any(num, base), base) == num

0 commit comments

Comments
 (0)