Skip to content

Commit

Permalink
V4.14.11
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
g-battaglia committed Aug 17, 2024
1 parent 5a2e746 commit 60e0a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kerykeion/charts/kerykeion_chart_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def makeTemplate(self, minify: bool = False) -> str:
def makeSVG(self, minify: bool = False):
"""Prints out the SVG file in the specifide folder"""

if not (self.template):
if not hasattr(self, "template"):
self.template = self.makeTemplate(minify)

self.chartname = self.output_directory / f"{self.user.name} - {self.chart_type} Chart.svg"
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.14.10"
version = "4.14.11"
authors = ["Giacomo Battaglia <[email protected]>"]
description = "A python library for astrology."
license = "AGPL-3.0"
Expand Down

0 comments on commit 60e0a9a

Please sign in to comment.