I am trying to use a multi line string in python f...
# dagster-feedback
p
I am trying to use a multi line string in python for my asset description. The description preview on the ui displays the triple quote instead of the description.
v
You can use the syntax with parentheses:
Copy code
@asset(
    description=
        (
            "my\n"
            "multiline\n"
            "description"
        )
)
def func():
    ...
j
hey @Pablo Beltran could you open a github issue with this report? it’ll help us direct it to the right person
👍 1