-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #287 from bombsimon/feat/remove-global-imports-plugin
Add plugin to reduce client imports
- Loading branch information
Showing
56 changed files
with
2,908 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
from .client_forward_refs import ClientForwardRefsPlugin | ||
from .extract_operations import ExtractOperationsPlugin | ||
from .no_reimports import NoReimportsPlugin | ||
from .shorter_results import ShorterResultsPlugin | ||
|
||
__all__ = ["ExtractOperationsPlugin", "NoReimportsPlugin", "ShorterResultsPlugin"] | ||
__all__ = [ | ||
"ClientForwardRefsPlugin", | ||
"ExtractOperationsPlugin", | ||
"NoReimportsPlugin", | ||
"ShorterResultsPlugin", | ||
] |
Oops, something went wrong.