o-862-268-o commited on
Commit
c2210c3
1 Parent(s): 7dab8e8
Files changed (1) hide show
  1. app.py +1 -2
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.datum','rb') as f:
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