Spaces:
Runtime error
Runtime error
o-862-268-o
commited on
Commit
•
c2210c3
1
Parent(s):
7dab8e8
app.py
CHANGED
@@ -2,9 +2,8 @@ from huggingface_hub import HfFileSystem
|
|
2 |
import gradio as gr
|
3 |
fs = HfFileSystem()
|
4 |
|
5 |
-
with open('datasets/o-862-268-o/licentia/datum__licentia
|
6 |
data = f.read()
|
7 |
-
print(data)
|
8 |
|
9 |
gr.Text(data)
|
10 |
|
|
|
2 |
import gradio as gr
|
3 |
fs = HfFileSystem()
|
4 |
|
5 |
+
with fs.open('datasets/o-862-268-o/licentia/datum__licentia','rb') as f:
|
6 |
data = f.read()
|
|
|
7 |
|
8 |
gr.Text(data)
|
9 |
|