Moiz commited on
Commit
2c523f3
·
1 Parent(s): d1a2032

fixed datatype

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -107,7 +107,7 @@ def not_watched():
107
  # Mark the movie as "N/W" for the current profile
108
  movie_index = current_index[0]
109
  profile = current_profile[0]
110
- data_df.at[movie_index, profile] = "99"
111
 
112
  # Save the changes to the dataset
113
  updated_data = Dataset.from_pandas(data_df)
 
107
  # Mark the movie as "N/W" for the current profile
108
  movie_index = current_index[0]
109
  profile = current_profile[0]
110
+ data_df.at[movie_index, profile] = 99
111
 
112
  # Save the changes to the dataset
113
  updated_data = Dataset.from_pandas(data_df)