-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
folder "Entities" was not copying to pip install. Was working for local.
- Loading branch information
Showing
4 changed files
with
3 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 +1,16 @@ | ||
from .SimConnect import SimConnect, Request, Event, millis, DWORD | ||
from .Entities import Plane | ||
from .RequestList import AircraftRequests | ||
from .EventList import AircraftEvents | ||
|
||
|
||
def int_or_str(value): | ||
try: | ||
return int(value) | ||
except TypeError: | ||
return value | ||
|
||
|
||
__version__ = "0.3.4" | ||
__version__ = "0.3.5" | ||
VERSION = tuple(map(int_or_str, __version__.split("."))) | ||
|
||
__all__ = ["SimConnect", "Request", "Event", "millis", "DWORD", "Plane", "AircraftRequests", "AircraftEvents"] | ||
__all__ = ["SimConnect", "Request", "Event", "millis", "DWORD", "AircraftRequests", "AircraftEvents"] |