Skip to content

Commit 623c029

Browse files
committed
typo fix 🔧
1 parent f17b3bd commit 623c029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def main():
6060
# Size Input: Set `arr_size` to a user-defined value. #
6161
size_input: str = console.input("[bold][magenta]size~int[/magenta][yellow]:$[/yellow][/bold] ")
6262
if size_input.isdigit():
63-
if size_input >= 1:
63+
if int(size_input) >= 1:
6464
arr_size = int(size_input)
6565
else:
6666
console.print("[bold][red]ERROR:[/red] Specified size input is too small, using default array size.[/bold]")

0 commit comments

Comments
 (0)