Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1117,12 +1117,12 @@ def update_emploi(selectedData, array_value, theme):
|
|
1117 |
@callback(
|
1118 |
Output(component_id='figContrats', component_property='figure'),
|
1119 |
Input('figRepartition', 'selectedData'),
|
1120 |
-
Input(component_id='framework-multi-select', component_property='value'),
|
1121 |
Input('figEmplois', 'selectedDataEmplois'),
|
|
|
1122 |
Input("mantine-provider", "forceColorScheme"),
|
1123 |
)
|
1124 |
|
1125 |
-
def update_contrat(selectedData,
|
1126 |
df_FT = API_France_Travail(array_value)
|
1127 |
df = df_FT[['intitule','typeContratLibelle','experienceLibelle','lieuTravail']].copy()
|
1128 |
|
|
|
1117 |
@callback(
|
1118 |
Output(component_id='figContrats', component_property='figure'),
|
1119 |
Input('figRepartition', 'selectedData'),
|
|
|
1120 |
Input('figEmplois', 'selectedDataEmplois'),
|
1121 |
+
Input(component_id='framework-multi-select', component_property='value'),
|
1122 |
Input("mantine-provider", "forceColorScheme"),
|
1123 |
)
|
1124 |
|
1125 |
+
def update_contrat(selectedData, selectedDataEmplois, array_value, theme):
|
1126 |
df_FT = API_France_Travail(array_value)
|
1127 |
df = df_FT[['intitule','typeContratLibelle','experienceLibelle','lieuTravail']].copy()
|
1128 |
|