uneeded sys

This commit is contained in:
Paul Tagliamonte 2013-01-21 12:19:35 -05:00
parent aae4e7b57e
commit 6455fe951a
2 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,6 @@
from hy.compiler.ast27 import forge_ast
from hy.lex.tokenize import tokenize
import codegen
import sys
from flask import Flask, render_template, request
app = Flask(__name__)

View File

@ -147,6 +147,7 @@ class AST27Converter(object):
self.native_cases = {
"defn": self._defn,
"fn": self._defn,
"def": self._def,
"import": _ast_import,