Skip to content

Commit

Permalink
2nd try to correct mathics.session.MathicsSession
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Nov 20, 2023
1 parent 9ba6585 commit b0b7efe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
CHANGES
=======

6.0.3
6.0.3 and 6.0.4
-----

Correct type annotation in ``mathics.session.MathicsSession`` See `Issue #934 <https://github.com/Mathics3/mathics-core/issues/934>`_.
Expand Down
2 changes: 1 addition & 1 deletion mathics/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(
add_builtin=True,
catch_interrupt=False,
form="InputForm",
character_encoding=Optional[str],
character_encoding: Optional[str]=None,
):
if character_encoding is not None:
mathics.settings.SYSTEM_CHARACTER_ENCODING = character_encoding
Expand Down
2 changes: 1 addition & 1 deletion mathics/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="6.0.3" # noqa
__version__="6.0.4" # noqa

0 comments on commit b0b7efe

Please sign in to comment.