unify
unify copied to clipboard
Modifies strings to all use the same quote where possible
===== unify
.. image:: https://travis-ci.org/myint/unify.svg?branch=master :target: https://travis-ci.org/myint/unify :alt: Build status
Modifies strings to all use the same quote where possible.
Example
After running::
$ unify --in-place example.py
this code
.. code-block:: python
x = "abc"
y = 'hello'
gets formatted into this
.. code-block:: python
x = 'abc'
y = 'hello'