You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per the Google Style Guide, an exception to the "one import per line" rule is allowed for the typing module. Currently, it looks like the only way to accomplish this is with --multi-imports, which affects all imports.
the multi-imports feature has several issues that prevent it from working properly and there are pending pull requests at #7 and #9. I've requested corrections on both and the contributors have not responded.
I will gladly accept new PRs for this additional behavior provided you can follow up on requests to modify it but I also need help with #7 and #9.
From my POV, I wrote zimports for the use within SQLAlchemy and related projects where we do not use any kind of multi-imports as they create merge artifacts. I'm not really sure why other people don't have this issue, but in any case multi-imports is a feature that other people would have to contribute.
Per the Google Style Guide, an exception to the "one import per line" rule is allowed for the
typing
module. Currently, it looks like the only way to accomplish this is with--multi-imports
, which affects all imports.IE, instead of:
Format as:
The text was updated successfully, but these errors were encountered: