Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 93c1f34

Browse files
committed
Fixed spelling bug (code still untested).
1 parent c360329 commit 93c1f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def setproblem(self, target, inputs=None, exclude=()):
6262
self.target = self.attrnum(target)
6363
exclude = map(self.attrnum, exclude)
6464
if inputs:
65-
self.inputs = removall(self.target, inputs)
65+
self.inputs = removeall(self.target, inputs)
6666
else:
6767
self.inputs = [a for a in self.attrs
6868
if a is not self.target and a not in exclude]

0 commit comments

Comments
 (0)