Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsbarnard committed Nov 11, 2024
2 parents d170fae + 092d807 commit 4af75b1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/fathomnet/api/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ def find_by_display_name(
"query/name/{}".format(quote(display_name)),
params=pageable.to_params() if pageable else None,
)
print(res_json)
return list(map(dto.FathomnetIdentity.from_dict, res_json))


Expand Down
1 change: 0 additions & 1 deletion test/test_worms.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ def check_for_name(node: WormsNode, name: str) -> bool:
"""Recursively check if a node or one of its descendants has a given name."""

def recurse_check(node: WormsNode) -> bool:
print(node.name, name)
if node.name == name:
return True
if not node.children:
Expand Down

0 comments on commit 4af75b1

Please sign in to comment.