neulab / ExplainaBoard

Interpretable Evaluation for AI Systems
MIT License
361 stars 36 forks source link

Consolidate quotes for strings #577

Closed odashi closed 1 year ago

odashi commented 1 year ago

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.