aesthetic cleanup and create F_STRINGS_AVAILABLE bool
parent
f12746228f
commit
dae3185ba9
|
@ -13,6 +13,9 @@ from sys import version_info
|
|||
from .parser import parse_path
|
||||
|
||||
|
||||
# f-strings are available in Python 3.6+
|
||||
F_STRINGS_AVAILABLE = version_info < (3, 6)
|
||||
|
||||
COORD_PAIR_TMPLT = re.compile(
|
||||
r'([\+-]?\d*[\.\d]\d*[eE][\+-]?\d+|[\+-]?\d*[\.\d]\d*)' +
|
||||
r'(?:\s*,\s*|\s+|(?=-))' +
|
||||
|
@ -24,7 +27,6 @@ def path2pathd(path):
|
|||
return path['d']
|
||||
|
||||
|
||||
|
||||
def ellipse2pathd(ellipse):
|
||||
"""converts the parameters from an ellipse or a circle to a string for a
|
||||
Path object d-attribute"""
|
||||
|
@ -125,12 +127,12 @@ def rect2pathd(rect):
|
|||
return d
|
||||
|
||||
|
||||
if version_info < (3, 6):
|
||||
def line2pathd(node_dict):
|
||||
return "M{} {}L{} {}".format(node_dict['x1'], node_dict['y1'], node_dict['x2'], node_dict['y2'])
|
||||
else:
|
||||
if F_STRINGS_AVAILABLE:
|
||||
def line2pathd(node_dict):
|
||||
return f"M{node_dict['x1']} {node_dict['y1']}L{node_dict['x2']} {node_dict['y2']}"
|
||||
else:
|
||||
def line2pathd(node_dict):
|
||||
return "M{} {}L{} {}".format(node_dict['x1'], node_dict['y1'], node_dict['x2'], node_dict['y2'])
|
||||
|
||||
|
||||
parser_dict = {
|
||||
|
|
Loading…
Reference in New Issue