From 7f27e926f2e45e79cc0319a760f7e585950fdb97 Mon Sep 17 00:00:00 2001 From: Tony031218 <975062472@qq.com> Date: Sat, 16 Jan 2021 09:37:54 +0800 Subject: [PATCH] replace single quotes with double quotes --- manimlib/mobject/svg/text_mobject.py | 32 ++++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/manimlib/mobject/svg/text_mobject.py b/manimlib/mobject/svg/text_mobject.py index e5a57c87..cac4355c 100644 --- a/manimlib/mobject/svg/text_mobject.py +++ b/manimlib/mobject/svg/text_mobject.py @@ -27,23 +27,23 @@ class TextSetting(object): class Text(SVGMobject): CONFIG = { # Mobject - 'color': WHITE, - 'height': None, - 'stroke_width': 0, + "color": WHITE, + "height": None, + "stroke_width": 0, # Text - 'font': '', - 'gradient': None, - 'lsh': -1, - 'size': 1, - 'font_size': 48, - 'tab_width': 4, - 'slant': NORMAL, - 'weight': NORMAL, - 't2c': {}, - 't2f': {}, - 't2g': {}, - 't2s': {}, - 't2w': {}, + "font": '', + "gradient": None, + "lsh": -1, + "size": 1, + "font_size": 48, + "tab_width": 4, + "slant": NORMAL, + "weight": NORMAL, + "t2c": {}, + "t2f": {}, + "t2g": {}, + "t2s": {}, + "t2w": {}, } def __init__(self, text, **config):