-
Notifications
You must be signed in to change notification settings - Fork 42
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 #66 from swansonk14/Py310Unions
Union types in Python 3.10
- Loading branch information
Showing
8 changed files
with
319 additions
and
51 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 |
---|---|---|
|
@@ -6,13 +6,13 @@ jobs: | |
run: | ||
runs-on: ubuntu-latest | ||
env: | ||
PYTHON: '3.9' | ||
PYTHON: '3.10' | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: Setup Python | ||
uses: actions/setup-python@main | ||
with: | ||
python-version: 3.9 | ||
python-version: '3.10' | ||
- name: Generate coverage report | ||
run: | | ||
git config --global user.email "[email protected]" | ||
|
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,4 +1,5 @@ | ||
from argparse import ArgumentError, ArgumentTypeError | ||
from tap._version import __version__ | ||
from tap.tap import Tap | ||
|
||
__all__ = ['Tap', '__version__'] | ||
__all__ = ['ArgumentError', 'ArgumentTypeError', 'Tap', '__version__'] |
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
Oops, something went wrong.