Skip to content

Commit

Permalink
add missing space before line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Jackson committed Feb 11, 2023
1 parent 1a7a99a commit 628864b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nicegui/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def _parse_style(text: Optional[str]) -> Dict[str, str]:
result[key.strip()] = value.strip()
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:
"""Apply, remove, or replace CSS style sheet definitions to modify the look of the element.
Expand Down

0 comments on commit 628864b

Please sign in to comment.