From: noah morrison Date: Sun, 25 Jan 2015 20:42:32 +0000 (-0500) Subject: Remove uneeded imports. X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=0ab77e60eb1e8096ce578c00ca2085cd6ea89bd0;p=chevron.git Remove uneeded imports. --- diff --git a/chevron/main.py b/chevron/main.py index 7e57030..3c15c8b 100755 --- a/chevron/main.py +++ b/chevron/main.py @@ -2,18 +2,14 @@ import json -from sys import argv - # # Python 2 and 3, module and script compatability # If you know a better way please tell me :( # try: - from .tokenizer import tokenize from .renderer import render except (ValueError, SystemError): - from tokenizer import tokenize from renderer import render