Add Webhook Deliveries (#2508)

Co-authored-by: Enrico Minack <github@enrico.minack.dev>
This commit is contained in:
Jonathan Greg
2023-06-20 08:49:02 +02:00
committed by GitHub
co-authored by Enrico Minack
parent 804c3107c8
commit 517ad33654
15 changed files with 578 additions and 2 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ class GithubObject:
return GithubObject.__makeSimpleAttribute(value, int)
@staticmethod
def _makeFloatAttribute(value):
def _makeFloatAttribute(value: Optional[float]) -> Attribute[float]:
return GithubObject.__makeSimpleAttribute(value, float)
@staticmethod