Skip to content

Commit

Permalink
Merge pull request #8 from csdms/mdpiper/updates-from-joss-review
Browse files Browse the repository at this point in the history
Updates from JOSS review
  • Loading branch information
mdpiper authored Jul 14, 2020
2 parents 17d7d72 + 6d77de9 commit 3a8a67d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ before_install:
fi
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh > $HOME/miniconda.sh
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh > $HOME/miniconda.sh
else
curl https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh > $HOME/miniconda.sh
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh > $HOME/miniconda.sh
fi
- bash $HOME/miniconda.sh -b -p $HOME/anaconda
- export PATH="$HOME/anaconda/bin:$PATH"
Expand Down
9 changes: 8 additions & 1 deletion bmipy/bmi.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
"""The Basic Model Interface (BMI) Python specification.
This language specification is derived from the Scientific Interface
Definition Language (SIDL) file bmi.sidl located at
https://github.com/csdms/bmi.
"""

from abc import ABC, abstractmethod
from typing import Tuple

Expand All @@ -12,7 +19,7 @@ def initialize(self, config_file: str) -> None:
Perform all tasks that take place before entering the model's time
loop, including opening files and initializing the model state. Model
inputs are read from a text-based configuration file, specified by
`filename`.
`config_file`.
Parameters
----------
Expand Down

0 comments on commit 3a8a67d

Please sign in to comment.