Skip to content

Commit

Permalink
update pyi reference
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Sep 24, 2024
1 parent 3616513 commit 6440b12
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tests/test_enum_ext.pyi.ref
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,8 @@ def from_enum_implicit(arg: Enum, /) -> int: ...
@overload
def from_enum_implicit(arg: Flag, /) -> int: ...

@overload
def to_enum(arg: int, /) -> Enum: ...

@overload
def to_enum(arg: int, /) -> Flag: ...
def to_flag(arg: int, /) -> Flag: ...

@overload
def to_enum(arg: int, /) -> UnsignedFlag: ...
def to_unsigned_flag(arg: int, /) -> UnsignedFlag: ...

0 comments on commit 6440b12

Please sign in to comment.