-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae06c3b
commit 1a98f08
Showing
10 changed files
with
767 additions
and
572 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from importlib import metadata as importlib_metadata | ||
|
||
|
||
def get_version() -> str: | ||
try: | ||
return importlib_metadata.version(__name__) | ||
except importlib_metadata.PackageNotFoundError: # pragma: no cover | ||
return "unknown" | ||
|
||
|
||
__version__: str = get_version() | ||
|
||
from onshape_api.connection import * # noqa: F403 E402 | ||
from onshape_api.utilities import * # noqa: F403 E402 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.