Skip to content

Commit

Permalink
fix missing typing.Mapping import in __main__. bump minor version -> …
Browse files Browse the repository at this point in the history
…0.2.2
  • Loading branch information
aaraney committed Oct 18, 2023
1 parent 9d44a00 commit e62862a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/ngen_cal/src/ngen/cal/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
if TYPE_CHECKING:
from typing import Mapping, Any

def main(general: General, model_conf: Mapping[str, Any]):
def main(general: General, model_conf: "Mapping[str, Any]"):
#seed the random number generators if requested
if general.random_seed is not None:
import random
Expand Down
2 changes: 1 addition & 1 deletion python/ngen_cal/src/ngen/cal/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.1'
__version__ = '0.2.2'

0 comments on commit e62862a

Please sign in to comment.