Skip to content

Commit a0153b3

Browse files
committed
try double quotes?
1 parent d293ef9 commit a0153b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_argv_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def argv_filename(python_code_filepath: str, file_location: str = "/saves/"):
5050
:return: The argv filename.
5151
"""
5252
path = Path(python_code_filepath)
53-
return f"{file_location}.{path.absolute().replace('/', "_")}.argv"
53+
return f"{file_location}.{path.absolute().replace("/", "_")}.argv"
5454

5555

5656
def read_argv(python_code_filepath: str, file_location: str = "/saves/") -> Optional[list]:

0 commit comments

Comments
 (0)