datacipen commited on
Commit
03e6a17
·
verified ·
1 Parent(s): 2584a48

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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, array_value, selectedDataEmplois, theme):
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