From 2c233c2687fe0329627e60873057db9fc2636fcc Mon Sep 17 00:00:00 2001 From: Donovan Kolbly Date: Tue, 28 May 2024 10:19:34 -0600 Subject: [PATCH] flips logic 'lint' -> 'suppress_checks' --- ocsf_validator/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocsf_validator/types.py b/ocsf_validator/types.py index 6879e38..6b75132 100644 --- a/ocsf_validator/types.py +++ b/ocsf_validator/types.py @@ -50,7 +50,7 @@ class OcsfDeprecationInfo(TypedDict): "enum": NotRequired[Dict[str, OcsfEnumMember]], "group": NotRequired[str], "is_array": NotRequired[bool], - "lint": NotRequired[Sequence[str]], + "suppress_checks": NotRequired[Sequence[str]], "max_len": NotRequired[int], "name": NotRequired[str], "notes": NotRequired[str],