Merge pull request #34 from plaes/master

Clean up unused imports
This commit is contained in:
Michael Opdenacker 2018-04-05 10:53:43 +02:00 committed by GitHub
commit b4118f3f9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 5 deletions

View file

@ -93,8 +93,6 @@ class PathList:
def pack (self):
return self.data
from io import BytesIO
class RefList:
def __init__ (self, data=b''):
self.data = data

2
lib.py
View file

@ -19,8 +19,6 @@
# along with Elixir. If not, see <http://www.gnu.org/licenses/>.
import subprocess
import re
import sys
def script (*args):
args = ('./script.sh',) + args

View file

@ -19,7 +19,7 @@
# along with Elixir. If not, see <http://www.gnu.org/licenses/>.
from sys import argv
from lib import script, scriptLines
from lib import scriptLines
import lib
import data
import os