Skip to content

Commit

Permalink
Various corrections for py34-lint
Browse files Browse the repository at this point in the history
Add second blank line.
Remove useless imports.
  • Loading branch information
pkrog committed Oct 18, 2018
1 parent 35093e3 commit a9eb587
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/galaxy/datatypes/isa.py
Expand Up @@ -14,11 +14,8 @@
import re
import shutil
import sys
import tarfile
import tempfile
import zipfile
from cgi import escape
from io import BytesIO
from json import dumps # noqa: F401

# Imports isatab after turning off warnings inside logger settings to avoid pandas warning making uploads fail.
Expand Down Expand Up @@ -53,6 +50,7 @@
# Function for opening correctly a CSV file for csv.reader() for both Python 2 and 3 {{{1
################################################################


def utf8_text_file_open(path):
if sys.version_info[0] < 3:
fp = open(path, 'rb')
Expand Down

0 comments on commit a9eb587

Please sign in to comment.