Skip to content

Commit

Permalink
add ctach for dropping columns='gmt'
Browse files Browse the repository at this point in the history
  • Loading branch information
byersiiasa committed Jun 10, 2024
1 parent bb10a3b commit 15cf1e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rime/rime_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ def round_up(x, a):

df_ind = pd.concat([df_ind, dfs])

df_ind.drop(columns='gmt')
if 'gmt' in df_ind.columns:
df_ind.drop(columns='gmt')
return df_ind


Expand Down

0 comments on commit 15cf1e1

Please sign in to comment.