Skip to content

Commit 42918d2

Browse files
committed
codacy fixes
1 parent a957d67 commit 42918d2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

automatminer/analytics/core.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import os
21
import warnings
32

43
import matplotlib.pyplot as plt
5-
from matminer.datasets import load_dataset
64

75
try:
86
from skater.core.explanations import Interpretation

automatminer/featurization/sets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
try:
1616
import torch
1717
import cgcnn
18-
except:
18+
except ImportError:
1919
torch, cgcnn = None, None
2020

2121
__authors__ = ["Alex Dunn", "Alex Ganose"]

automatminer/pipeline.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def benchmark(self, df, target, kfold, fold_subset=None):
217217
"may be extended!")
218218
results = []
219219
fold = 0
220-
for train_ix, test_ix in kfold.split(df):
220+
for _, test_ix in kfold.split(df):
221221
if fold in fold_subset:
222222
self.logger.info("Training on fold index {}".format(fold))
223223
# Split and identify test set
@@ -240,7 +240,7 @@ def benchmark(self, df, target, kfold, fold_subset=None):
240240
"dataframe for benchmark.")
241241
df = self.autofeaturizer.fit_transform(df, target)
242242

243-
for train_ix, test_ix in kfold.split(df):
243+
for _, test_ix in kfold.split(df):
244244
if fold in fold_subset:
245245
self.logger.info("Training on fold index {}".format(fold))
246246

0 commit comments

Comments
 (0)