Skip to content

Commit c44f771

Browse files
committed
Path().suffix is not callable
1 parent 5c88d2f commit c44f771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/util/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_read_config(
3838
if env_var:
3939
full_path = tmp_path / partial_path
4040
env_var_dict[env_var] = str(full_path)
41-
file_path = full_path if full_path.suffix() else full_path / ".murfey"
41+
file_path = full_path if full_path.suffix else full_path / ".murfey"
4242
else:
4343
file_path = Path().home() / ".murfey"
4444

0 commit comments

Comments
 (0)