unify 0.5


pip install unify

  Latest version

Released: Aug 07, 2019

Project Links

Meta
Author: Steven Myint

Classifiers

Intended Audience
  • Developers

Environment
  • Console

Programming Language
  • Python :: 2.6
  • Python :: 2.7
  • Python :: 3

License
  • OSI Approved :: MIT License
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'
No dependencies