|
@@ -336,7 +336,7 @@ def _begin_user_module(self, name: str) -> None:
|
|
|
|
|
|
def visit_enum_type(self,
|
|
|
name: str,
|
|
|
- info: QAPISourceInfo,
|
|
|
+ info: Optional[QAPISourceInfo],
|
|
|
ifcond: List[str],
|
|
|
features: List[QAPISchemaFeature],
|
|
|
members: List[QAPISchemaEnumMember],
|
|
@@ -378,7 +378,7 @@ def visit_object_type(self,
|
|
|
|
|
|
def visit_alternate_type(self,
|
|
|
name: str,
|
|
|
- info: QAPISourceInfo,
|
|
|
+ info: Optional[QAPISourceInfo],
|
|
|
ifcond: List[str],
|
|
|
features: List[QAPISchemaFeature],
|
|
|
variants: QAPISchemaVariants) -> None:
|