Skip to content

Commit f5aa9a4

Browse files
committed
Fix messed up import & Add Method to __all__
1 parent 3be2f9e commit f5aa9a4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyflowlauncher/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import logging
33
import os
44

5-
from .plugin import Plugin, ResultResponse
6-
from .result import JsonRPCAction, Result, send_results
5+
from .plugin import Plugin
6+
from .result import JsonRPCAction, Result, send_results, ResultResponse
77
from .method import Method
88

99
log_level = os.environ.get("FLOW_LAUNCHER_API_LOG_LEVEL", "INFO")
@@ -20,6 +20,7 @@
2020
"send_results",
2121
"Result",
2222
"JsonRPCAction",
23+
"Method",
2324
]
2425

2526

0 commit comments

Comments
 (0)