Skip to content

Commit

Permalink
Fixed syntax to be compatible with python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alvalentini committed Mar 4, 2024
1 parent 78cc333 commit f689d3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def run(self):


setup(name='up_enhsp',
version='0.0.24',
version='0.0.25',
description='up_enhsp',
author='UNIBS Team',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion up_enhsp/enhsp_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_credits(**kwargs) -> Optional['Credits']:


class ENHSPAnytimeEngine(ENHSPEngine, PDDLAnytimePlanner):
def __init__(self, params: str | None = None):
def __init__(self, params: Optional[str] = None):
ENHSPEngine.__init__(self,params)
PDDLAnytimePlanner.__init__(self)

Expand Down

0 comments on commit f689d3b

Please sign in to comment.