Skip to content

Commit 29d6565

Browse files
committed
Linter fixes
1 parent b65d001 commit 29d6565

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/ds105/ds105_util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
# From NIPY
2727
from nipy.io.api import load_image
2828

29+
2930
def csv2rec(fname):
3031
return pd.read_csv(fname).to_records()
3132

examples/fiac/fiac_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
# Stdlib
1717
import csv
1818
import os
19+
from io import StringIO # Python 3
1920
from os import listdir, makedirs
2021
from os.path import abspath, exists, isdir, splitext
2122
from os.path import join as pjoin
2223

23-
from io import StringIO # Python 3
24-
2524
# Third party
2625
import numpy as np
2726
import pandas as pd
2827

2928
# From NIPY
3029
from nipy.io.api import load_image
3130

31+
3232
def csv2rec(fname):
3333
return pd.read_csv(fname).to_records()
3434

0 commit comments

Comments
 (0)