This repository contains both single quotes and double quotes for representing string literals. It is basically better to choose exactly one notation since mixing both significantly drops searchability of the code (if we searched "something", the result never includes 'something').
I recommend to choose double quotes since (1) Black adopts it by default, and (2) I think it is the majority of this repository.
This repository contains both single quotes and double quotes for representing string literals. It is basically better to choose exactly one notation since mixing both significantly drops searchability of the code (if we searched
"something"
, the result never includes'something'
).I recommend to choose double quotes since (1) Black adopts it by default, and (2) I think it is the majority of this repository.