from __future__ imports move to the beginning of the file
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
from typing import Dict, List, Tuple, Any
|
2 |
from __future__ import annotations
|
|
|
3 |
from functools import reduce
|
4 |
import operator
|
5 |
import pandas as pd
|
|
|
|
|
1 |
from __future__ import annotations
|
2 |
+
from typing import Dict, List, Tuple, Any
|
3 |
from functools import reduce
|
4 |
import operator
|
5 |
import pandas as pd
|