|
21 | 21 | # SOFTWARE. |
22 | 22 | """Provides utilities for mapping and transforming data types between Python and C++ representations.""" |
23 | 23 |
|
24 | | -from enum import Enum # noqa: F401 |
| 24 | +from enum import Enum # noqa: F401 # pylint: disable=W0611 |
25 | 25 | import inspect |
26 | | -from pathlib import Path # noqa: F401 |
| 26 | +from pathlib import Path # noqa: F401 # pylint: disable=W0611 |
27 | 27 | import sys |
28 | 28 |
|
29 | 29 | # Import types to map to cpp (camel case to snake case) |
30 | | -from ansys.dpf.core.available_result import AvailableResult, Homogeneity # noqa: F401 |
31 | | -from ansys.dpf.core.collection_base import CollectionBase # noqa: F401 |
| 30 | +from ansys.dpf.core.available_result import ( # noqa: F401 # pylint: disable=W0611 |
| 31 | + AvailableResult, |
| 32 | + Homogeneity, |
| 33 | +) |
| 34 | +from ansys.dpf.core.collection_base import CollectionBase # noqa: F401 # pylint: disable=W0611 |
32 | 35 | from ansys.dpf.core.common import ( |
33 | 36 | _camel_to_snake_case, |
34 | 37 | _smart_dict_camel, |
35 | 38 | _snake_to_camel_case, |
36 | 39 | ) |
37 | | -from ansys.dpf.core.data_sources import DataSources # noqa: F401 |
38 | | -from ansys.dpf.core.dpf_array import DPFArray # noqa: F401 |
39 | | -from ansys.dpf.core.field import Field, FieldDefinition # noqa: F401 |
40 | | -from ansys.dpf.core.fields_container import FieldsContainer # noqa: F401 |
41 | | -from ansys.dpf.core.meshed_region import MeshedRegion # noqa: F401 |
42 | | -from ansys.dpf.core.scoping import Scoping # noqa: F401 |
43 | | -from ansys.dpf.core.support import Support # noqa: F401 |
44 | | -from ansys.dpf.core.time_freq_support import TimeFreqSupport # noqa: F401 |
| 40 | +from ansys.dpf.core.data_sources import DataSources # noqa: F401 # pylint: disable=W0611 |
| 41 | +from ansys.dpf.core.dpf_array import DPFArray # noqa: F401 # pylint: disable=W0611 |
| 42 | +from ansys.dpf.core.field import Field, FieldDefinition # noqa: F401 # pylint: disable=W0611 |
| 43 | +from ansys.dpf.core.fields_container import FieldsContainer # noqa: F401 # pylint: disable=W0611 |
| 44 | +from ansys.dpf.core.meshed_region import MeshedRegion # noqa: F401 # pylint: disable=W0611 |
| 45 | +from ansys.dpf.core.scoping import Scoping # noqa: F401 # pylint: disable=W0611 |
| 46 | +from ansys.dpf.core.support import Support # noqa: F401 # pylint: disable=W0611 |
| 47 | +from ansys.dpf.core.time_freq_support import TimeFreqSupport # noqa: F401 # pylint: disable=W0611 |
45 | 48 |
|
46 | 49 | map_types_to_cpp = _smart_dict_camel() |
47 | 50 | for classes in inspect.getmembers(sys.modules[__name__], inspect.isclass): |
|
0 commit comments