IDEMSInternational / rapidpro-flow-toolkit

Toolkit for using spreadsheets to create and modify RapidPro flows
GNU Lesser General Public License v2.1
3 stars 1 forks source link

Migrate code style to black #96

Closed istride closed 9 months ago

istride commented 9 months ago

This project does not follow any particular code style conventions, which is a distraction to some (me, in particular), but has the general effect of making the code harder to read and edit. As an example, some modules use tabs for indentation and others use spaces. Good code style depends entirely on programmers' individual choices.

Black is an opinionated code formatter with intentionally limited configuration options, so that developers spend less time thinking about code style. The intention is for Black to make the vast majority of code style decisions and make a consistent style more likely throughout the project.

This PR applies Black coding style to the entire project in one attempt, as is recommended by the Black documentation. Black is guaranteed not to change the behaviour of the code it is applied to.