Skip to content

Commit

Permalink
Fixe type error on line 36 (#981)
Browse files Browse the repository at this point in the history
Fix to type error on line 36
  • Loading branch information
dhar174 authored Jan 18, 2023
1 parent 7573a8c commit aaa2637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accelerate/commands/menu/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Direction(enum.Enum):


def forceWrite(content, end=""):
sys.stdout.write(content + end)
sys.stdout.write(str(content) + end)
sys.stdout.flush()


Expand Down

0 comments on commit aaa2637

Please sign in to comment.