We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8061b9 commit 85be435Copy full SHA for 85be435
pygitguardian/models.py
@@ -216,8 +216,8 @@ def __init__(
216
self,
217
break_type: str,
218
policy: str,
219
- validity: Optional[str],
220
matches: List[Match],
+ validity: Optional[str] = None,
221
**kwargs: Any,
222
) -> None:
223
super().__init__()
@@ -482,9 +482,9 @@ class HealthCheckResponse(Base):
482
def __init__(
483
484
detail: str,
485
- status_code: Optional[int],
486
- app_version: Optional[str],
487
- secrets_engine_version: Optional[str],
+ status_code: int,
+ app_version: Optional[str] = None,
+ secrets_engine_version: Optional[str] = None,
488
489
):
490
0 commit comments