1
0
Fork 0

Use black formatting dev

main
Jeff Moe 2023-01-29 14:39:45 -07:00
parent 19cfd0f9bf
commit 16f39970fe
3 changed files with 17 additions and 2 deletions

View File

@ -40,6 +40,22 @@ source env/bin/activate
```
# Development
Setup like above, and also:
```
cd plot-freely/
source env/bin/activate
pip install -r requirements-dev.txt
```
Then before committing new code, make sure it is enprettified:
```
black polar-plot
```
# See Also
CygnusRFI

View File

@ -27,7 +27,6 @@
# Example:
# polar_plot
import numpy as np
import matplotlib.pyplot as plt
@ -44,4 +43,3 @@ if __name__ == "__main__":
ax.set_ylim(0.0, 90.0)
plt.show()

View File

@ -0,0 +1 @@
black