Skip to content

Commit

Permalink
V4.13.1: Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
g-battaglia committed Jul 19, 2024
1 parent 06f39ed commit cdd2b7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kerykeion/ephemeris_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from kerykeion.kr_types import EphemerisDictModel
from kerykeion.kr_types import SiderealMode, HousesSystemIdentifier, PerspectiveType, ZodiacType
from datetime import datetime, timedelta
from typing import Literal
from typing import Literal, Union
import logging


Expand Down Expand Up @@ -49,7 +49,7 @@ def __init__(
is_dst: bool = False,
disable_chiron: bool = False,
zodiac_type: ZodiacType = DEFAULT_ZODIAC_TYPE,
sidereal_mode: SiderealMode | None = None,
sidereal_mode: Union[SiderealMode, None] = None,
houses_system_identifier: HousesSystemIdentifier = DEFAULT_HOUSES_SYSTEM_IDENTIFIER,
perspective_type: PerspectiveType = DEFAULT_PERSPECTIVE_TYPE,
max_days: int = 730,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kerykeion"
version = "4.13.0"
version = "4.13.1"
authors = ["Giacomo Battaglia <[email protected]>"]
description = "A python library for astrology."
license = "AGPL-3.0"
Expand Down

0 comments on commit cdd2b7a

Please sign in to comment.