Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions github/CheckRun.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down