Commit 062f6b0dcac0981ec5d72fe24e041676061fb6c3
- Diff rendering mode:
- inline
- side by side
sailfish/lbm.py
(1 / 1)
|   | |||
| 714 | 714 | ||
| 715 | 715 | # If the model has not been explicitly specified by the user, try to automatically | |
| 716 | 716 | # select a working model. | |
| 717 | if 'model' not in self.options.specified and defaults is not None and 'model' not in defaults.keys(): | ||
| 717 | if 'model' not in self.options.specified and (defaults is None or 'model' not in defaults.keys()): | ||
| 718 | 718 | self._set_model(self.options.model, 'mrt', 'bgk') | |
| 719 | 719 | else: | |
| 720 | 720 | self._set_model(self.options.model) |

