DimasMP3 commited on
Commit ·
b975c79
1
Parent(s): 217c3af
Rename app configuration file to avoid Space conflicts
Browse files- config.json → app-config.json +0 -0
- config.py +2 -2
config.json → app-config.json
RENAMED
|
File without changes
|
config.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
|
@@ -7,7 +7,7 @@ from functools import lru_cache
|
|
| 7 |
from pathlib import Path
|
| 8 |
from typing import Any, Dict, List, Optional
|
| 9 |
|
| 10 |
-
CONFIG_FILE = Path(__file__).with_name("config.json")
|
| 11 |
DEFAULT_LABELS: List[str] = [
|
| 12 |
"Heart",
|
| 13 |
"Oblong",
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
|
|
|
| 7 |
from pathlib import Path
|
| 8 |
from typing import Any, Dict, List, Optional
|
| 9 |
|
| 10 |
+
CONFIG_FILE = Path(__file__).with_name("app-config.json")
|
| 11 |
DEFAULT_LABELS: List[str] = [
|
| 12 |
"Heart",
|
| 13 |
"Oblong",
|