This way classes can be copy-pasted into the Python console, which would otherwise raise IndentationError.
This way classes can be copy-pasted into the Python console, which would otherwise raise IndentationError.
</details><br>
</details><br>
<detailsopen><summary><strong>Why are virtual environments and tests not covered?</strong></summary><br>
Check out <ahref="https://docs.python-guide.org/">The Hitchhiker’s Guide to Python</a> for a nice overview of the mentioned topics.<br><br>
A quick overview of virtual environments in Unix:<br>
<code>python3 -m venv env # Creates virtual environment in current directory.</code><br>
<code>py -m venv env # Creates virtual environment in current directory.</code><br>