You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Kaggle access token auth KeyError when KAGGLE_API_TOKEN is unset (#874)
fix to #873
```
del os.environ["KAGGLE_API_TOKEN"]
```
causes keyerror if `KAGGLE_API_TOKEN` is not set, so replaced it with
```
os.environ.pop("KAGGLE_API_TOKEN", None)
```
0 commit comments