From b87c36617bf34668845ef41853969b61d632bb75 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 11:10:54 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/vstt/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vstt/common.py b/src/vstt/common.py index 3bc6c26b..7e4071af 100644 --- a/src/vstt/common.py +++ b/src/vstt/common.py @@ -18,7 +18,7 @@ ) -def _has_valid_type(var: Any, correct_type: type) -> bool: +def _has_valid_type(var: Any, correct_type: type) -> bool: if isinstance(var, correct_type): # var has the correct type return True