You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are lots of considerations when writing code, and having a consistent style is usually towards the bottom for scientific work. Luckily, there's a tool called black that can automatically reformat your code to look a way that most people will be able to easily read. Without this, others will have to exert extra effort to understand your code
This can be done with the following code:
$ pip install black
$ black predict.py predict_enriched.py
The text was updated successfully, but these errors were encountered:
There are lots of considerations when writing code, and having a consistent style is usually towards the bottom for scientific work. Luckily, there's a tool called
black
that can automatically reformat your code to look a way that most people will be able to easily read. Without this, others will have to exert extra effort to understand your codeThis can be done with the following code:
The text was updated successfully, but these errors were encountered: