-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove flake8 F401 exclusion for
__init__.py
files
Instead declare the `__all__` variable as stated by flake8's maintainer: https://stackoverflow.com/a/59438802
- Loading branch information
Eric Young
committed
Apr 27, 2021
1 parent
95d60b3
commit 9894063
Showing
3 changed files
with
1 addition
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from hooks.post_gen_project import remove_folder, set_aqa_framework, set_request_template | ||
from hooks.pre_gen_project import check_valid_email_address_format | ||
__all__ = ("check_valid_email_address_format", "remove_folder", "set_aqa_framework", "set_request_template", ) |
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