Merge branch 'encode:master' into fix_field_error

This commit is contained in:
Amin Aminian 2023-06-24 09:50:02 +03:30 committed by GitHub
commit f8c70df4c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -8,17 +8,17 @@ on:
jobs: jobs:
pre-commit: pre-commit:
runs-on: ubuntu-20.04 runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-python@v2 - uses: actions/setup-python@v4
with: with:
python-version: 3.9 python-version: "3.10"
- uses: pre-commit/action@v2.0.0 - uses: pre-commit/action@v3.0.0
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}

View File

@ -5,7 +5,6 @@ be used for paginated responses.
import contextlib import contextlib
import warnings import warnings
from base64 import b64decode, b64encode from base64 import b64decode, b64encode
from collections import namedtuple from collections import namedtuple
from urllib import parse from urllib import parse