Skip to content

Commit

Permalink
fix: function calling
Browse files Browse the repository at this point in the history
  • Loading branch information
laura-l-amaral committed Jan 12, 2024
1 parent 176ce1a commit 71a9efd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/scripts/code_tree_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ class Class1:
Returns:
list: A list of declared variables from the Python file.
"""
if not Path(python_file).exists:


if not Path(python_file).exists():
log(f"{python_file} does not exist")
return []

Expand Down

0 comments on commit 71a9efd

Please sign in to comment.