Skip to content

Commit

Permalink
fix missing typing import in __main__. bump minor version -> 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraney committed Oct 18, 2023
1 parent 05fe8ce commit ed46524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions python/ngen_cal/src/ngen/cal/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
from ngen.cal.strategy import Algorithm
from ngen.cal.agent import Agent

from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Mapping, Any
from typing import Mapping, Any

def main(general: General, model_conf: Mapping[str, Any]):
#seed the random number generators if requested
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.0'
__version__ = '0.2.1'

0 comments on commit ed46524

Please sign in to comment.