We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e18e39 commit 2cbf217Copy full SHA for 2cbf217
record_api/type_analysis.py
@@ -149,7 +149,6 @@ def annotation(self) -> cst.BaseExpression:
149
def module(self) -> typing.Optional[str]:
150
return None
151
152
-
153
# Set field set to be all fields, so none are ignored even if not set
154
@property # type: ignore
155
def __fields_set__(self) -> typing.Set[str]: # type: ignore
@@ -159,6 +158,7 @@ def __fields_set__(self) -> typing.Set[str]: # type: ignore
159
158
def __fields_set__(self, val: typing.Set[str]) -> None:
160
pass
161
+
162
class InputTypeBase(BaseModel, abc.ABC):
163
@abc.abstractmethod
164
def to_output(self) -> OutputType:
0 commit comments