bito-code-review[bot] commented on PR #43316: URL: https://github.com/apache/superset/pull/43316#issuecomment-5347460305
<!-- Bito Reply --> The `__init__.py` file in `superset/coordination/` is a standard Python package initialization file. In this PR, it is used to expose the `CoordinationService` class, which is a common and accepted practice in Python to simplify imports for users of the package. If you prefer to keep the implementation logic elsewhere, you can move the class definition to a separate file (e.g., `superset/coordination/service.py`) and re-export it from `__init__.py` using `from .service import CoordinationService`. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
