Skip to content

Commit

Permalink
Bugfix to models 1, 2, and 3 (lots of "None" may be printed in summary).
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinAndre committed Oct 15, 2020
1 parent 74a9f7d commit 05fdd71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyprocessmacro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__all__ = ["Process"]

__version__ = "1.0.8"
__version__ = "1.0.9"
11 changes: 6 additions & 5 deletions pyprocessmacro/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -1363,11 +1363,12 @@ def summary(self):
print(
"\n-------------------------------------------------------------------------\n"
)
for med_model in m_models:
print(med_model)
print(
"\n-------------------------------------------------------------------------\n"
)
if self.model_num > 3:
for med_model in m_models:
print(med_model)
print(
"\n-------------------------------------------------------------------------\n"
)
if self.indirect_model:
print(
"\n********************** DIRECT AND INDIRECT EFFECTS **********************\n"
Expand Down

0 comments on commit 05fdd71

Please sign in to comment.