Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
datrz committed Jul 9, 2023
1 parent 22a5110 commit c4ded61
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ def get_data(cell, element, attr=None, value=None):
if not df_preloaded[(df_preloaded['DATE'] == row['DATE']) & (df_preloaded['FLIGHT'] == row['FLIGHT'])].empty:
#print('Flight already in df_preloaded')
continue
else
#print('Flight not in df_preloaded')
df_preloaded = df_preloaded.append(row, ignore_index=True)
else:
df_preloaded = pd.concat([df_preloaded, df], ignore_index=True)

# ====== MAIN PAGE VIEW ======

Expand Down

0 comments on commit c4ded61

Please sign in to comment.