We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original report by Jens Glaser (Bitbucket: jens_glaser, GitHub: jglaser).
I have to manually call the prepare() method:
prepare()
#!/usr/bin/env python3 from signac_dashboard import Dashboard from signac_dashboard.modules import ImageViewer if __name__ == '__main__': dashboard = Dashboard(modules=[ImageViewer()]) dashboard.prepare() dashboard.run(host='localhost', port=8888)
I believe that should be unnecessary
The text was updated successfully, but these errors were encountered:
Original comment by Bradley Dice (Bitbucket: bdice, GitHub: bdice).
Good catch - I changed the way the dashboard runs. Instead of the run function, now it uses the main function.
run
main
Sorry, something went wrong.
Resolved by PR #10.
No branches or pull requests
Original report by Jens Glaser (Bitbucket: jens_glaser, GitHub: jglaser).
I have to manually call the
prepare()
method:I believe that should be unnecessary
The text was updated successfully, but these errors were encountered: