Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 429 Bytes

README.rst

File metadata and controls

31 lines (19 loc) · 429 Bytes

unify

Build status

Modifies strings to all use the same quote where possible.

Example

After running:

$ unify --in-place example.py

this code

x = "abc"
y = 'hello'

gets formatted into this

x = 'abc'
y = 'hello'