You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from .. import globals # pylint: disable=redefined-builtin |
|
|
|
|
|
def add_body_html(code: str) -> None: |
|
globals.get_client().body_html += code + '\n' |
|
|
|
|
|
def add_head_html(code: str) -> None: |
|
globals.get_client().head_html += code + '\n'
|
|
|