Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SimConnectCust/EventList.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from SimConnect import *
from .SimConnect import *


class Event(object):
Expand Down
2 changes: 1 addition & 1 deletion SimConnectCust/FacilitiesList.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from SimConnect import *
from .SimConnect import *
from .Enum import *
from .Constants import *

Expand Down
2 changes: 1 addition & 1 deletion SimConnectCust/RequestList.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from SimConnect import *
from .SimConnect import *
from .Enum import *
from .Constants import *

Expand Down
12 changes: 6 additions & 6 deletions msfs_landing_inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,15 +448,15 @@ def simconnect_thread_func(threadname):


if __name__ == "__main__":
thread1 = Thread(target = simconnect_thread_func, args=('Thread-1', ))
thread2 = Thread(target = flask_thread_func, args=('Thread-2', ))
thread1 = Thread(target = simconnect_thread_func, args=('Thread-1', ), daemon=True)
thread2 = Thread(target = flask_thread_func, args=('Thread-2', ), daemon=True)
thread1.start()
thread2.start()

time.sleep(.5)


print("\n*********************")
print("MSFS Landing Inspector initialized")
print("Load 'localhost:5000' in your browser to start MSFS Landing Inspector")
print("Tip: You can access MSFS Landing Inspector from your mobile device. Check install_instructions.txt for instructions.")

print("\n*********************\n\n")
while True:
time.sleep(.5)