Skip to content

Commit

Permalink
fix: Fix 'resolve_target_pointer' argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
edeustua committed Jun 9, 2024
1 parent 425648c commit 12ecb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytest_checklist/pointer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Pointer:
full_name: str


def resolve_target_pointer(target: Callable[..., Any]) -> Pointer:
def resolve_target_pointer(target: Callable[..., Any] | property) -> Pointer:
# NOTE: currently only supports functions and properties

if isinstance(target, property):
Expand Down

0 comments on commit 12ecb43

Please sign in to comment.