Skip to content

Commit

Permalink
Fix Python 3.14 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 7, 2024
1 parent ee12cf5 commit 1bdbf85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def fetch_root_members(module):
for target in node.targets:
if target.id == "__all__":
for element in node.value.elts:
click_extra_members.append(element.s)
click_extra_members.append(element.value)

assert click_members <= set(click_extra_members)
assert cloup_members <= set(click_extra_members)
Expand Down

0 comments on commit 1bdbf85

Please sign in to comment.