1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-31 04:58:12 +00:00

Fix typos

This commit is contained in:
RGBCube 2022-06-25 16:08:54 +03:00
parent c04b69fcb7
commit a2a582dd5b
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
__all__ = ("SecurtiyAndAnalysis",)
__all__ = ("SecurityAndAnalysis",)
from typing import TYPE_CHECKING, Literal, TypedDict
@ -18,7 +18,7 @@ class SecretScanningPushProtection(TypedDict):
status: Literal["enabled", "disabled"]
class SecurtiyAndAnalysis(TypedDict):
class SecurityAndAnalysis(TypedDict):
advanced_security: NotRequired[AdvancedSecurity]
secret_scanning: NotRequired[SecretScanning]
secret_scanning_push_protection: NotRequired[SecretScanningPushProtection]