From 9cdcfb6c18528c582cf101de5a9fde791ead5f09 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Wed, 19 Feb 2025 22:13:24 +0100 Subject: [PATCH] Fix incorrect deprecated import --- github/CheckRun.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github/CheckRun.py b/github/CheckRun.py index 180710b21b..3a3588aa66 100644 --- a/github/CheckRun.py +++ b/github/CheckRun.py @@ -34,7 +34,7 @@ from datetime import datetime from typing import TYPE_CHECKING, Any -from typing_extensions import deprecated +import deprecated import github.CheckRunAnnotation import github.CheckRunOutput @@ -109,7 +109,7 @@ def check_suite(self) -> CheckSuite: return self._check_suite.value @property - @deprecated("Use property check_suite.id instead") + @deprecated.deprecated("Use property check_suite.id instead") def check_suite_id(self) -> int: self._completeIfNotSet(self._check_suite_id) return self._check_suite_id.value