Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
neuralworm/book-of-souls
neuralworm
/
book-of-souls-2-word-search
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
neuralworm
commited on
Jun 15, 2024
Commit
ecfdc81
·
verified
·
1 Parent(s):
cc9460b
Update utils.py
Browse files
Files changed (1)
hide
show
utils.py
+4
-0
utils.py
CHANGED
Viewed
@@ -1,3 +1,7 @@
1
import inflect
2
from datetime import datetime
3
1
+
import logging
2
+
logger = logging.getLogger(__name__)
3
+
logging.basicConfig(level=logging.INFO)
4
+
5
import inflect
6
from datetime import datetime
7