summaryrefslogtreecommitdiff
path: root/lib/elements/utils.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2020-05-18 18:46:26 +0200
committerGitHub <noreply@github.com>2020-05-18 18:46:26 +0200
commitc65b437cae365f0bec17aa70815f64eda4336514 (patch)
tree7b6d059bca6aa9ad773bca4c61fc847965286ae8 /lib/elements/utils.py
parent100647694697a3f1037ebdf77379f0eb8d4bd552 (diff)
render single point elements (#701)
Diffstat (limited to 'lib/elements/utils.py')
-rw-r--r--lib/elements/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/utils.py b/lib/elements/utils.py
index 4719a5ff..c34c4b25 100644
--- a/lib/elements/utils.py
+++ b/lib/elements/utils.py
@@ -26,7 +26,7 @@ def node_to_elements(node): # noqa: C901
return [SatinColumn(node)]
else:
elements = []
- if element.get_style("fill", 'black') and not element.get_style('fill-opacity', 1) == "0":
+ if element.get_style("fill", "black") and not element.get_style('fill-opacity', 1) == "0":
if element.get_boolean_param("auto_fill", True):
elements.append(AutoFill(node))
else: