Skip to content

Commit 3065f1b

Browse files
committed
Fix string
1 parent de6c4cc commit 3065f1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def get_model_definition(model_key):
106106
try:
107107
return Path(f"models/{model_key}.jl").read_text().strip()
108108
except FileNotFoundError:
109-
return (f"Model definition not found for `{model_key}`;
110-
f" if you see this error, please open an issue.")
109+
return (f"# Model definition not found for `{model_key}`.\n"
110+
f"# If you see this error, please open an issue.")
111111

112112

113113
def html(_args):

0 commit comments

Comments
 (0)