PIDGINv3 icon indicating copy to clipboard operation
PIDGINv3 copied to clipboard

[reproducibility] Add consistent code style

Open cthoyt opened this issue 4 years ago • 0 comments
trafficstars

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

cthoyt avatar Feb 08 '21 13:02 cthoyt