Commit 0e19d26
authored
fix: fix string formatting in version warning message (#928)
Fixed, variables interpolation in version warning message:
https://github.com/Kaggle/kaggle-cli/blob/54dc103e50dc678addd94aee1d68fd54d6a54b9e/src/kaggle/api/kaggle_api_extended.py#L5325-L5327
**Before:**
```
Warning: Looks like you're using an outdated `kaggle`` version (installed: {current_version}), please consider upgrading to the latest version ({latest_version_str})
```
**After:**
```
Warning: Looks like you're using an outdated `kaggle` version (installed: 1.8.3), please consider upgrading to the latest version (1.8.4)
```1 parent 54dc103 commit 0e19d26
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5322 | 5322 | | |
5323 | 5323 | | |
5324 | 5324 | | |
5325 | | - | |
5326 | | - | |
5327 | | - | |
| 5325 | + | |
| 5326 | + | |
| 5327 | + | |
5328 | 5328 | | |
5329 | 5329 | | |
5330 | 5330 | | |
| |||
0 commit comments