orenccl commented on PR #6001: URL: https://github.com/apache/gravitino/pull/6001#issuecomment-2563433725
Hi @xunliu There are 3 Unresolved reference in `client-python.gravitino.catalog.catalog.py` - `Unresolved reference 'TableCatalog'` - `Unresolved reference 'FilesetCatalog'` - `Unresolved reference 'TopicCatalog'` I found `FilesetCatalog` has usage and it's class is located in `gravitino.catalog.fileset_catalog.py` However, I couldn't resolve the other two (TableCatalog and TopicCatalog). Are these using forward references on purpose? ```python // Has usage and class type def as_fileset_catalog(self) -> "FilesetCatalog": // No usage and class type def as_table_catalog(self) -> "TableCatalog": def as_topic_catalog(self) -> "TopicCatalog": ``` Could you help me resolve this warning? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
