Skip to content

Commit 0e65805

Browse files
authored
Fixing Linting Issue
Use of Python version 3.8 limits the new feature introduced during and after 3.10. This fix should resolve the linting issue caused due to older versions.
1 parent 3072b85 commit 0e65805

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
uses: actions/[email protected]
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4.7.1
17+
uses: actions/setup-python@v6.0.0
1818
with:
19-
python-version: 3.8
19+
python-version: '3.12'
2020

2121
- name: Install dependencies
2222
run: |

0 commit comments

Comments
 (0)