From 4ef2931a8b70b1dd64275166663e95fcfd9e226a Mon Sep 17 00:00:00 2001 From: "vn.py" Date: Fri, 24 Dec 2021 13:30:12 +0800 Subject: [PATCH] =?UTF-8?q?[Mod]=20=E7=AE=80=E5=8C=96=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/run.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/run.py b/script/run.py index e14f8aa..5752faa 100644 --- a/script/run.py +++ b/script/run.py @@ -3,7 +3,7 @@ from vnpy.trader.ui import MainWindow, create_qapp from vnpy_hts import HtsGateway -from vnpy_optionmaster import OptionMasterApp + def main(): """主入口函数""" @@ -12,7 +12,6 @@ def main(): event_engine = EventEngine() main_engine = MainEngine(event_engine) main_engine.add_gateway(HtsGateway) - main_engine.add_app(OptionMasterApp) main_window = MainWindow(main_engine, event_engine) main_window.showMaximized()