Bump install-pinned/pyupgrade from 847ef2b8aa35a3817372540b887f4130d864d6b7 to 423622e7c2088eeba495a591385ec22074284f90 (#5840)

* Bump install-pinned/pyupgrade

Bumps [install-pinned/pyupgrade](https://github.com/install-pinned/pyupgrade) from 847ef2b8aa35a3817372540b887f4130d864d6b7 to 423622e7c2088eeba495a591385ec22074284f90.
- [Release notes](https://github.com/install-pinned/pyupgrade/releases)
- [Commits](847ef2b8aa...423622e7c2)

---
updated-dependencies:
- dependency-name: install-pinned/pyupgrade
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* [autofix.ci] apply automated fixes

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-01-02 22:23:55 +01:00 committed by GitHub
parent e640fdfa23
commit e3f5897400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: install-pinned/pyupgrade@847ef2b8aa35a3817372540b887f4130d864d6b7
- uses: install-pinned/pyupgrade@423622e7c2088eeba495a591385ec22074284f90
- name: Run pyupgrade
run: |
shopt -s globstar

View File

@ -611,5 +611,5 @@ def save(opts: OptManager, path: str, defaults: bool = False) -> None:
else:
data = ""
with open(path, "wt", encoding="utf8") as f:
with open(path, "w", encoding="utf8") as f:
serialize(opts, f, data, defaults)