coagulant / unify

Modifies strings to all use the same quote where possible

Home Page:https://pypi.python.org/pypi/unify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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'

About

Modifies strings to all use the same quote where possible

https://pypi.python.org/pypi/unify


Languages

Language:Python 97.2%Language:Makefile 2.8%