Skip to content

Commit

Permalink
Apply ruff rule RUF010
Browse files Browse the repository at this point in the history
RUF010 Use explicit conversion flag
  • Loading branch information
DimitriPapadopoulos committed Aug 12, 2024
1 parent e288408 commit e356b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsspec/tests/test_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ def glob_files_folder(tmp_path):
local_fake_dir = str(tmp_path)
for path_info in PATHS_FOR_GLOB_TESTS:
if path_info["type"] == "file":
local_fs.touch(path=f"{str(tmp_path)}/{path_info['name']}")
local_fs.touch(path=f"{tmp_path!s}/{path_info['name']}")
return local_fake_dir


Expand Down

0 comments on commit e356b97

Please sign in to comment.