From 92d87458d8efbb8d0be6c4d757b30c60dc753fda Mon Sep 17 00:00:00 2001 From: harshit Date: Sat, 5 Oct 2024 01:51:56 +0530 Subject: [PATCH] fix linting with black --- capa/features/freeze/features.py | 1 + 1 file changed, 1 insertion(+) diff --git a/capa/features/freeze/features.py b/capa/features/freeze/features.py index 476aedbd6..ffff1acd5 100644 --- a/capa/features/freeze/features.py +++ b/capa/features/freeze/features.py @@ -309,6 +309,7 @@ class PropertyFeature(FeatureModel): property: str description: Optional[str] = None + class NumberFeature(FeatureModel): type: Literal["number"] = "number" number: Union[int, float]