Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
VLucet committed Jan 12, 2024
1 parent 4db2c8a commit 0487957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdtools/labelstudio.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def get_name(df):
column_name = "source_file_with_dep"
col = df[column_name].tolist()
# from math import isnan
first_valid = next(x for x in col if not np.isnan(x))
first_valid = next(x for x in col if not pd.isna(x))
print("&&&&&&&")
# print(col)
print(col[0])
Expand Down

0 comments on commit 0487957

Please sign in to comment.