Skip to content

Commit 0032e02

Browse files
chore(deps): update all dependencies (#2039)
* chore(deps): update all dependencies * fix lint check --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: shatakshiiii <[email protected]>
1 parent 7288de0 commit 0032e02

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude: >
1515
)$
1616
repos:
1717
- repo: https://github.com/renovatebot/pre-commit-hooks
18-
rev: 41.99.7
18+
rev: 41.113.0
1919
hooks:
2020
- id: renovate-config-validator
2121
alias: renovate
@@ -56,7 +56,7 @@ repos:
5656
- id: tox-ini-fmt
5757

5858
- repo: https://github.com/astral-sh/ruff-pre-commit
59-
rev: "v0.12.12"
59+
rev: "v0.13.0"
6060
hooks:
6161
- id: ruff
6262
entry: sh -c 'ruff check --fix --force-exclude && ruff format --force-exclude'
@@ -169,7 +169,7 @@ repos:
169169
- id: pyupgrade
170170
args: ["--py310-plus"]
171171
- repo: https://github.com/pre-commit/mirrors-mypy.git
172-
rev: v1.17.1
172+
rev: v1.18.1
173173
hooks:
174174
- id: mypy
175175
additional_dependencies:

src/ansible_navigator/tm_tokenize/fchainmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
TValue_co = TypeVar("TValue_co", covariant=True)
99

1010

11-
class Indexable(Generic[TKey_contra, TValue_co], Protocol):
11+
class Indexable(Generic[TKey_contra, TValue_co], Protocol): # noqa: PYI059
1212
def __getitem__(self, key: TKey_contra) -> TValue_co:
1313
"""Get the value associated with the given key.
1414

tests/integration/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def copytree(
248248
try:
249249
if symlinks and source_path.is_symlink():
250250
source_link = source_path.readlink()
251-
os.symlink(source_link, destination_path)
251+
Path(destination_path).symlink_to(source_link)
252252
elif source_path.is_dir():
253253
copytree(
254254
source_path,

0 commit comments

Comments
 (0)