nteract / vdom

🎄 Virtual DOM for Python
https://github.com/nteract/vdom/blob/master/docs/mimetype-spec.md
BSD 3-Clause "New" or "Revised" License
221 stars 34 forks source link

moved imports to the top to avoid execution order error #108

Closed afonit closed 1 year ago

afonit commented 3 years ago

random is called before it is imported resulting in an error. To resolve this I moved the imports to the top, and brought the import of time up as well.

Note: The error was "NameError: name 'random' is not defined"

review-notebook-app[bot] commented 3 years ago

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

rgbkrk commented 1 year ago

Thank you @afonit