Skip to content

Commit a8b201d

Browse files
committed
update base_parsers
1 parent 92d52be commit a8b201d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

render-engine-parser/base_parsers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ def parse_content(content: str) -> tuple[dict, str]:
4848
return parse_content(content)
4949

5050
@staticmethod
51-
def parse(content: str, page: "Page" = None):
51+
def parse(content: str, page = None):
5252
"""
5353
Parses content to be rendered into HTML
5454
5555
In the base parser, this returns the content as is.
5656
5757
params:
5858
content: content to be rendered into HTML
59-
page: Page object to gain access to attributes
59+
page: Render Engine Page Content object to gain access to attributes
6060
"""
6161
return content

0 commit comments

Comments
 (0)