Skip to content

Commit

Permalink
yay its working
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffckerr committed Jun 4, 2018
1 parent 1a79f3c commit 728440f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions bin/start_server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python

# Run the server
import hptool.webapp.main
# from hptool.webapp.main import run
# run()
import hptool as hp
hp.webapp.main.run()
2 changes: 1 addition & 1 deletion hptool/burden.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def plottopcauses(self, which=None, n=None, axsize=None, figsize=None):
ax.set_facecolor('none')
yaxis = pl.arange(len(barvals), 0, -1)
pl.barh(yaxis, barvals, height=barw, facecolor=barcolor, edgecolor='none')
ax.set_yticks(arange(10, 0, -1))
ax.set_yticks(pl.arange(10, 0, -1))
ax.set_yticklabels(barlabels)

sc.SIticks(ax=ax,axis='x')
Expand Down
2 changes: 1 addition & 1 deletion hptool/webapp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_version_info():


def run():

# Make the app
app = make_app()

Expand Down

0 comments on commit 728440f

Please sign in to comment.