diff --git a/vim/UltiSnips/python.snippets b/vim/UltiSnips/python.snippets index b5442ae..16b160f 100644 --- a/vim/UltiSnips/python.snippets +++ b/vim/UltiSnips/python.snippets @@ -10,12 +10,12 @@ setup( # Metadata for pypi author="BgWorld Unipersonale Srl", - author_email = "assistenza@bgworld.it", - description = "${2:description}", + author_email="assistenza@bgworld.it", + description="${2:description}", scripts=[ 'scripts/$1' ], - install_requires = [ + install_requires=[ 'click==7.1.2', 'inotify==0.2.10', 'nose==1.3.7', @@ -23,7 +23,7 @@ setup( 'python-magic==0.4.18', ], package_data={ - 'dagherroforo': [ 'dagherroforo_example.conf' ], + 'dagherroforo': ['dagherroforo_example.conf'], }, ) endsnippet