Updated Error {}
Browse files- backend.py +1 -1
backend.py
CHANGED
@@ -19,7 +19,7 @@ class InvoicePipeline:
|
|
19 |
# This funcition will help in extracting and run the code, and will produce a dataframe for us
|
20 |
def run(self) -> pd.DataFrame:
|
21 |
# We have defined the way the data has to be returned
|
22 |
-
df = pd.DataFrame(
|
23 |
"Invoice ID": pd.Series(dtype = "int"),
|
24 |
"DESCRIPTION": pd.Series(dtype = "str"),
|
25 |
"Issue Data": pd.Series(dtype = "str"),
|
|
|
19 |
# This funcition will help in extracting and run the code, and will produce a dataframe for us
|
20 |
def run(self) -> pd.DataFrame:
|
21 |
# We have defined the way the data has to be returned
|
22 |
+
df = pd.DataFrame({
|
23 |
"Invoice ID": pd.Series(dtype = "int"),
|
24 |
"DESCRIPTION": pd.Series(dtype = "str"),
|
25 |
"Issue Data": pd.Series(dtype = "str"),
|