We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725e829 commit e20fbbeCopy full SHA for e20fbbe
1 file changed
src/metrics_as_scores/cli/LocalWebserver.py
@@ -16,7 +16,6 @@
16
from questionary import Choice
17
from traceback import TracebackException
18
from subprocess import Popen, PIPE
19
-from sys import executable
20
from os import environ
21
from io import TextIOWrapper
22
from time import sleep
@@ -96,9 +95,8 @@ def __init__(self, running: bool) -> None:
96
95
started_successfully = State(running=False)
97
success_semaphore = Semaphore(value=0)
98
try:
99
- bokeh = Path(executable).parent.joinpath('./bokeh')
100
args = [
101
- str(bokeh), 'serve',
+ 'bokeh', 'serve',
102
str(webapp_dir),
103
'--port', f'{self.port}',
104
'--show',
0 commit comments