From 4e4163da35eff84cdec20fe785874c3d8e4c70d7 Mon Sep 17 00:00:00 2001 From: zevav Date: Tue, 19 Feb 2019 13:51:39 -0500 Subject: [PATCH] removed unnecessary 'name' variable in tatt/__init__.py --- setup.py | 2 +- tatt/transcribe.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index d7781fa..ce756a1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.md') as file: setup( name="tatt", - version="0.13", + version="0.14", py_modules=['tatt'], url='https://github.com/zevaverbach/tatt', install_requires=[ diff --git a/tatt/transcribe.py b/tatt/transcribe.py index a177233..5fcfc3d 100644 --- a/tatt/transcribe.py +++ b/tatt/transcribe.py @@ -5,10 +5,7 @@ import sys import click -from tatt import config -from tatt import exceptions -from tatt import helpers -from tatt import vendors +from tatt import config, exceptions, helpers, vendors @click.group()