Skip to content

Commit f213554

Browse files
author
Ceyda Cinarel
committed
oops
1 parent a494f5c commit f213554

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="torchserve_dashboard",
10-
version="v0.2.4",
10+
version="v0.2.5",
1111
url="https://github.com/cceyda/torchserve-dashboard",
1212
license="Apache Software License 2.0",
1313
author="Ceyda Cinarel",

torchserve_dashboard/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def raise_on_not200(response):
1818

1919
def start_torchserve(model_store, config_path, log_location=None, metrics_location=None):
2020
new_env={}
21-
env=os.environ()
21+
env=os.environ
2222
for x in ENVIRON_WHITELIST:
2323
if x in env:
2424
new_env[x]=env[x]

torchserve_dashboard/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
layout="centered",
1515
initial_sidebar_state="expanded",
1616
)
17-
st.write(os.environ)
17+
1818
parser = argparse.ArgumentParser(description="Torchserve dashboard")
1919

2020
parser.add_argument("--model_store", default=None, help="Directory where your models are stored")

0 commit comments

Comments
 (0)