Skip to content

Commit ed1b5c6

Browse files
committed
Minor bug fixed
1 parent 8bb9a27 commit ed1b5c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pertbio/pertbio/model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ def factory(args):
1313
elif args.model == 'CoExp_nonlinear':
1414
return CoExpNonlinear(args).build()
1515
elif args.model == 'LinReg':
16-
return LinReg(args).build
16+
return LinReg(args).build()
1717
elif args.model == 'NN':
18-
return NN(args).build
18+
return NN(args).build()
1919
# elif args.model == 'Bayesian':
2020
# return BN(args).build()
2121
# TODO: baysian model

0 commit comments

Comments
 (0)