Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#1648)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/streetsidesoftware/cspell-cli: v8.2.0 → v8.2.1](streetsidesoftware/cspell-cli@v8.2.0...v8.2.1)
- [github.com/pre-commit/mirrors-mypy.git: v1.7.1 → v1.8.0](https://github.com/pre-commit/mirrors-mypy.git/compare/v1.7.1...v1.8.0)

* fix mypy error

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: shatakshiiii <shatakshimishra01@gmail.com>
  • Loading branch information
pre-commit-ci[bot] and shatakshiiii committed Feb 5, 2024
1 parent 12f9f8f commit 7ae41b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
- "--exit-non-zero-on-fix"

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.2.0
rev: v8.2.1
hooks:
- id: cspell
name: Spell check with cspell
Expand Down Expand Up @@ -150,7 +150,7 @@ repos:
- id: pyupgrade
args: ["--py39-plus"]
- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.7.1
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion src/ansible_navigator/ui_framework/curses_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _set_colors(self) -> None:
self._logger.debug("term_osc4_support: %s", self._term_osc4_support)

if self._term_osc4_support:
with self._ui_config.terminal_colors_path.open(mode="r", encoding="utf-8") as fh:
with self._ui_config.terminal_colors_path.open("r", encoding="utf-8") as fh:
colors = json.load(fh)

for color_name, color_hex in colors.items():
Expand Down

0 comments on commit 7ae41b5

Please sign in to comment.