Skip to content

Commit

Permalink
file
Browse files Browse the repository at this point in the history
  • Loading branch information
SermetPekin committed Apr 19, 2024
1 parent 9a96cd2 commit 1b4080c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evdspy/EVDSlocal/utils/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_file_deep(num=1):
return folder / file_name
for _ in range(deep):
file_name = get_file_deep(_)
if file_name.is_file():
if file_name and file_name.is_file():
return file_name
return None
def test_get_api_key_file(capsys):
Expand Down

0 comments on commit 1b4080c

Please sign in to comment.