Skip to content

Commit

Permalink
bug fix in gui display
Browse files Browse the repository at this point in the history
  • Loading branch information
paulf81 committed Jun 2, 2023
1 parent 97c4877 commit 55f0663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flasc/raw_data_handling/sqldatabase_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ def load_data(self):
df_merge = df_array[0]

if len(df_array) > 1:
for df_ in df_array:
for df_ in df_array[1:]:
df_merge = df_merge.join(df_, on='time',how='outer')

#Save it now
Expand Down

0 comments on commit 55f0663

Please sign in to comment.