diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2025-03-09 21:21:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-09 21:21:48 -0400 |
| commit | 99509df8d8abf1e7b701a4a09cf170a362f6d878 (patch) | |
| tree | a461549502fa9f37dc287789b6c7db81dfcd5368 /lib/utils/param.py | |
| parent | 0d2fc24f25f87562f0755b53dad6204efad1330d (diff) | |
Mypy type correctness (#3199)
Diffstat (limited to 'lib/utils/param.py')
| -rw-r--r-- | lib/utils/param.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
