Skip to content
Snippets Groups Projects
Commit d236bb73 authored by Elias Chetouane's avatar Elias Chetouane
Browse files

Modification d'indentation.

parent 5a2835d2
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ if temp_rows :
print(f"\n\nnb of doi exported \t{len(df_out)}")
# write the number of dois found in a file to display on the website
with open("nb-dois.txt", 'w') as f :
f.write(str(len(df_out)))
with open("nb-dois.txt", 'w') as outf :
outf.write(str(len(df_out)))
## output another csv with datacite client and number of datasets
df_client_raw = df_out["client"].value_counts().to_frame()
......@@ -81,7 +81,6 @@ if temp_rows :
df_client_raw["name"] = client_names
df_client_raw["year"] = client_years
df_client_raw["url"] = client_urls
print("df_client_raw cree")
df_client_raw.to_csv("all_datacite_clients_for_uga.csv")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment