Skip to content

Commit 3351f4d

Browse files
committed
fix: import error
1 parent ed0a968 commit 3351f4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/examples/tutorial/document_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
rd = RichDocument.from_document_file("https://arxiv.org/pdf/1906.04043")
66

7-
from mellea.stdlib.docs.richdocument import Table # noqa: E402
7+
from mellea.stdlib.components.docs import Table # noqa: E402
88

99
table1: Table = rd.get_tables()[0]
1010
print(table1.to_markdown())

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ From the rich document we can extract some document content, e.g. the
627627
first table:
628628
```python
629629
# file: https://github.com/generative-computing/mellea/blob/main/docs/examples/tutorial/document_mobject.py#L5-L8
630-
from mellea.stdlib.docs.richdocument import Table
630+
from mellea.stdlib.components.docs import Table
631631
table1: Table = rd.get_tables()[0]
632632
print(table1.to_markdown())
633633
```

0 commit comments

Comments
 (0)