-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(typing): Added __all__ to package root
Refs #175
- Loading branch information
1 parent
8012b42
commit 7b4178a
Showing
4 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
from hamcrest.core import * | ||
from hamcrest.core import __all__ as _core_vars | ||
from hamcrest.library import * | ||
from hamcrest.library import __all__ as _library_vars | ||
|
||
__version__ = "2.0.3.dev0" | ||
__author__ = "Chris Rose" | ||
__copyright__ = "Copyright 2020 hamcrest.org" | ||
__license__ = "BSD, see License.txt" | ||
|
||
__all__ = [] | ||
__all__.extend(_core_vars) | ||
__all__.extend(_library_vars) |
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