@Nihilate: This PR should address #73 by applying Black to all the relevant Python code. It looks like a lot of changes, but it's mostly just exchanging ' for " and reflowing some code.
I'd like to include running Black in the CI pipeline so that future PRs are required to follow the same formatting, but it's not obvious to me how I should configure that. Happy to add it myself if you can point me in the right direction, otherwise I'd recommend you include running it like this
black --verbose --check roboragi tests
to validate both the application and the tests. :grin:
@Nihilate: This PR should address #73 by applying Black to all the relevant Python code. It looks like a lot of changes, but it's mostly just exchanging
'
for"
and reflowing some code.I'd like to include running Black in the CI pipeline so that future PRs are required to follow the same formatting, but it's not obvious to me how I should configure that. Happy to add it myself if you can point me in the right direction, otherwise I'd recommend you include running it like this
to validate both the application and the tests. :grin: