JeffersonLab / jlab_datascience_exp_hall

MIT License
0 stars 1 forks source link

Format all files with Black #9

Closed sgoldenCS closed 1 month ago

sgoldenCS commented 1 month ago

Ran black using hatch run style:format which formatted 21 files in our repository. This is a big change that might require some checking to ensure everything is good. Our numpy_reader unit test still runs without errors, and the hydra_driver seems to work fine as well.

sgoldenCS commented 1 month ago

For clarification: black(link) is a command-line tool that can be installed with pip install black that automatically formats python code based on a standard set of rules (following PEP8) that govern

This pull request does not include any manual changes to black's configuration or to the code itself. All changes were done using hatch run style:format (or equivalently black . in the repo's main directory).

dlersch commented 1 month ago

This looks good. thank you for the clarification.