Skip to content

Commit 9b50539

Browse files
committed
logreg: Fix copy-paste error
1 parent f28974b commit 9b50539

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/emlearn_logreg/emlearn_logreg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# and we need to merge the native module symbols at import time
55
# When used as dynamic native modules (.mpy), .py and native code is merged at build time
66
try:
7-
from emlearn_linreg_c import *
8-
except ImportError as e:
7+
from emlearn_logreg_c import *
8+
except ImportError:
99
pass
1010

1111
log_prefix = 'emlearn_logreg:'

0 commit comments

Comments
 (0)