replace single quotes with double quotes

This commit is contained in:
Tony031218 2021-01-16 09:37:54 +08:00
parent 5f6b653803
commit 7f27e926f2

View file

@ -27,23 +27,23 @@ class TextSetting(object):
class Text(SVGMobject): class Text(SVGMobject):
CONFIG = { CONFIG = {
# Mobject # Mobject
'color': WHITE, "color": WHITE,
'height': None, "height": None,
'stroke_width': 0, "stroke_width": 0,
# Text # Text
'font': '', "font": '',
'gradient': None, "gradient": None,
'lsh': -1, "lsh": -1,
'size': 1, "size": 1,
'font_size': 48, "font_size": 48,
'tab_width': 4, "tab_width": 4,
'slant': NORMAL, "slant": NORMAL,
'weight': NORMAL, "weight": NORMAL,
't2c': {}, "t2c": {},
't2f': {}, "t2f": {},
't2g': {}, "t2g": {},
't2s': {}, "t2s": {},
't2w': {}, "t2w": {},
} }
def __init__(self, text, **config): def __init__(self, text, **config):