Skip to content

bbcVld/unify

 
 

Repository files navigation

unify

Build status

Modifies strings to all use the same quote where possible.

Example

After running:

$ unify --in-place example.py

this code

a = "abc"
b = 'hello'
c = 'this \' is quote'
d = 'this " is another quote'

gets formatted into this

a = 'abc'
b = 'hello'
c= "this ' is quote"
d = 'this " is another quote'

About

Modifies strings to all use the same quote where possible

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.7%
  • Makefile 1.3%