sadpandajoe commented on code in PR #33070: URL: https://github.com/apache/superset/pull/33070#discussion_r2036269678
########## superset/migrations/versions/2015-09-21_17-30_4e6a06bad7a8_init.py: ########## @@ -22,17 +22,19 @@ """ +import sqlalchemy as sa +from alembic import op Review Comment: You can probably get rid of this import by using `drop_table` as part of the utils: https://github.com/apache/superset/blob/5537c6fcd12ad6d4e932832245441a69178bd39b/superset/migrations/shared/utils.py#L250 -- 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]
