From 99509df8d8abf1e7b701a4a09cf170a362f6d878 Mon Sep 17 00:00:00 2001 From: capellancitizen Date: Sun, 9 Mar 2025 21:21:48 -0400 Subject: Mypy type correctness (#3199) --- lib/utils/param.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/utils/param.py') diff --git a/lib/utils/param.py b/lib/utils/param.py index 162dcddc..6def49f7 100644 --- a/lib/utils/param.py +++ b/lib/utils/param.py @@ -1,5 +1,5 @@ class ParamOption: - def __init__(self, param_id=None, name=None, preview_image=None): + def __init__(self, param_id=None, name=None, preview_image=None) -> None: self.id: str = param_id self.name: str = name self.preview_image: str = preview_image -- cgit v1.2.3