From a10be33d36cd92c36cfcc3046f2a1dc36cd4148d Mon Sep 17 00:00:00 2001 From: benflexcompute Date: Fri, 21 Jun 2024 00:11:46 +0000 Subject: [PATCH] Fix linting on python 3.9 --- flow360/component/simulation/unit_system.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flow360/component/simulation/unit_system.py b/flow360/component/simulation/unit_system.py index 4b0a6d3ea..327ba4261 100644 --- a/flow360/component/simulation/unit_system.py +++ b/flow360/component/simulation/unit_system.py @@ -567,6 +567,7 @@ def Moment(self): ) +# pylint: disable=too-few-public-methods class _LengthType(_DimensionedType): """:class: LengthType""" @@ -577,6 +578,7 @@ class _LengthType(_DimensionedType): LengthType = Annotated[_LengthType, PlainSerializer(_dimensioned_type_serializer)] +# pylint: disable=too-few-public-methods class _AngleType(_DimensionedType): """:class: AngleType""" @@ -588,6 +590,7 @@ class _AngleType(_DimensionedType): AngleType = Annotated[_AngleType, PlainSerializer(_dimensioned_type_serializer)] +# pylint: disable=too-few-public-methods class _MassType(_DimensionedType): """:class: MassType""" @@ -598,6 +601,7 @@ class _MassType(_DimensionedType): MassType = Annotated[_MassType, PlainSerializer(_dimensioned_type_serializer)] +# pylint: disable=too-few-public-methods class _TimeType(_DimensionedType): """:class: TimeType"""