浏览代码

add missing space before line break

Steve Jackson 2 年之前
父节点
当前提交
628864b70b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      nicegui/element.py

+ 1 - 1
nicegui/element.py

@@ -151,7 +151,7 @@ class Element(ABC, Visibility):
                 result[key.strip()] = value.strip()
                 result[key.strip()] = value.strip()
         return result
         return result
 
 
-    def style(self, add: Optional[str] = None, *, remove: Optional[str] = None, replace: Optional[str] = None)\
+    def style(self, add: Optional[str] = None, *, remove: Optional[str] = None, replace: Optional[str] = None) \
             -> Self:
             -> Self:
         """Apply, remove, or replace CSS style sheet definitions to modify the look of the element.
         """Apply, remove, or replace CSS style sheet definitions to modify the look of the element.