forked from ScoDoc/ScoDoc
Fix: bug synchro apo si 1 seul étudiant
This commit is contained in:
parent
0634dbd0aa
commit
76bedfb303
@ -149,7 +149,9 @@ get_maquette_url = _PI.get_maquette_url
|
|||||||
get_portal_api_version = _PI.get_portal_api_version
|
get_portal_api_version = _PI.get_portal_api_version
|
||||||
|
|
||||||
|
|
||||||
def get_inscrits_etape(code_etape, annee_apogee=None, ntrials=4, use_cache=True):
|
def get_inscrits_etape(
|
||||||
|
code_etape, annee_apogee=None, ntrials=4, use_cache=True
|
||||||
|
) -> list[dict]:
|
||||||
"""Liste des inscrits à une étape Apogée
|
"""Liste des inscrits à une étape Apogée
|
||||||
Result = list of dicts
|
Result = list of dicts
|
||||||
ntrials: try several time the same request, useful for some bad web services
|
ntrials: try several time the same request, useful for some bad web services
|
||||||
|
@ -132,7 +132,7 @@ def formsemestre_synchro_etuds(
|
|||||||
if isinstance(etuds, str):
|
if isinstance(etuds, str):
|
||||||
etuds = etuds.split(",") # vient du form de confirmation
|
etuds = etuds.split(",") # vient du form de confirmation
|
||||||
elif isinstance(etuds, int):
|
elif isinstance(etuds, int):
|
||||||
etuds = [etuds]
|
etuds = [str(etuds)]
|
||||||
if isinstance(inscrits_without_key, int):
|
if isinstance(inscrits_without_key, int):
|
||||||
inscrits_without_key = [inscrits_without_key]
|
inscrits_without_key = [inscrits_without_key]
|
||||||
elif isinstance(inscrits_without_key, str):
|
elif isinstance(inscrits_without_key, str):
|
||||||
|
Loading…
Reference in New Issue
Block a user