Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/myint/unify

Modifies strings to all use the same quote where possible
https://github.com/myint/unify

formatter python

Last synced: about 1 month ago
JSON representation

Modifies strings to all use the same quote where possible

Lists

README

        

=====
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'