Skip to content

Commit cfcb7b1

Browse files
author
Luka Žaja
committed
Typeguard check_type() call fix
1 parent 36a6819 commit cfcb7b1

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

requirements.txt

-4 Bytes
Binary file not shown.

src/refind_btrfs/utility/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,6 @@ def default_if_none(value: Optional[TParam], default: TParam) -> TParam:
277277

278278

279279
def checked_cast(destination_type: Type[TParam], value: Any) -> TParam:
280-
check_type("value", value, destination_type)
280+
check_type(value, destination_type)
281281

282282
return cast(TParam, value)

0 commit comments

Comments
 (0)