Skip to content

Commit

Permalink
remove return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4t4nuk1 committed Apr 17, 2022
1 parent a0da41d commit 163e56e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions deepfinder/deep_find.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ def _rec_helper(obj: Any, path: list[str]) -> Any:
if hasattr(obj, '__dict__') and current_path in vars(obj):
return _rec_helper(vars(obj)[current_path], path)

return


def _rec_list_helper(obj: list[Any], path: list[str], current_path: str):
if current_path == '*':
Expand Down

0 comments on commit 163e56e

Please sign in to comment.