Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
william-dawson committed Feb 29, 2024
1 parent 188daa7 commit 7241fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnitTests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def parse_command(fin, num_commands=1):
for i in range(0, num_commands):
return_string = ""
temp_string = fin.readline()
while(temp_string != '\n' and temp_string != "```"):
while temp_string != '\n' and temp_string != "```":
return_string = return_string + temp_string
temp_string = fin.readline()
ret_strings.append(return_string)
Expand Down

0 comments on commit 7241fac

Please sign in to comment.