Spaces:
Running
Running
DmitryRyumin
commited on
Commit
β’
868a44c
1
Parent(s):
6d979e4
Summary
Browse files- app/utils.py +1 -1
- config.toml +1 -1
app/utils.py
CHANGED
@@ -49,7 +49,7 @@ def read_csv_file(file_path, drop_columns=[]):
|
|
49 |
|
50 |
def round_numeric_values(x):
|
51 |
if isinstance(x, (int, float)):
|
52 |
-
return round(x,
|
53 |
|
54 |
return x
|
55 |
|
|
|
49 |
|
50 |
def round_numeric_values(x):
|
51 |
if isinstance(x, (int, float)):
|
52 |
+
return round(x, 4)
|
53 |
|
54 |
return x
|
55 |
|
config.toml
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[AppSettings]
|
2 |
-
APP_VERSION = "0.11.
|
3 |
SERVER_NAME = "127.0.0.1"
|
4 |
PORT = 7860
|
5 |
CSS_PATH = "app.css"
|
|
|
1 |
[AppSettings]
|
2 |
+
APP_VERSION = "0.11.1"
|
3 |
SERVER_NAME = "127.0.0.1"
|
4 |
PORT = 7860
|
5 |
CSS_PATH = "app.css"
|