Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,8 @@ class DataList:
|
|
64 |
@staticmethod
|
65 |
def filter_table(df: pd.DataFrame, filter_names: list[str], filter_names2: list[str], filter_name3: list[str],) -> pd.DataFrame:
|
66 |
df = df.loc[df.Type.isin(set(filter_names))]
|
67 |
-
|
|
|
68 |
return df
|
69 |
|
70 |
@staticmethod
|
|
|
64 |
@staticmethod
|
65 |
def filter_table(df: pd.DataFrame, filter_names: list[str], filter_names2: list[str], filter_name3: list[str],) -> pd.DataFrame:
|
66 |
df = df.loc[df.Type.isin(set(filter_names))]
|
67 |
+
vals= filter_names3
|
68 |
+
df = df.loc[df.Module.isin(set(vals))]
|
69 |
return df
|
70 |
|
71 |
@staticmethod
|