Skip to content

Commit

Permalink
#80: move debug option
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranjprice101 committed Oct 18, 2019
1 parent 9e624a1 commit 611dd2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,6 @@
"/instruments/<int:instrument_id>/facilitycycles/<int:cycle_id>/investigations/count")

if __name__ == "__main__":
app.run(host=config.get_host(), port=config.get_port())
app.run(debug=config.is_debug_mode())
app.run(host=config.get_host(), port=config.get_port(), debug=config.is_debug_mode())


0 comments on commit 611dd2a

Please sign in to comment.