We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9d44e commit f5bd29fCopy full SHA for f5bd29f
tigeropen/common/consts/fundamental_fields.py
@@ -1,8 +1,10 @@
1
# -*- coding: utf-8 -*-
2
3
-from enum import unique
+from enum import unique, Enum
4
5
-from tigeropen.common.model import Field
+
6
+class Field(Enum):
7
+ pass
8
9
10
@unique
tigeropen/common/model.py
@@ -2,7 +2,6 @@
#
# @Date : 2021/11/12
# @Author : sukai
-from enum import Enum
class BaseParams:
@@ -35,5 +34,3 @@ def to_openapi_dict(self):
35
34
return params
36
37
38
-class Field(Enum):
39
- pass
0 commit comments