Skip to content

Commit

Permalink
Update dependency pyright to ^1.1.392 (#2661)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kyle Finley <[email protected]>
  • Loading branch information
renovate[bot] and ITProKyle authored Jan 20, 2025
1 parent 3ea0030 commit a74ccee
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"devDependencies": {
"cspell": "^8.17.2",
"pyright": "^1.1.388"
"pyright": "^1.1.392"
},
"name": "runway",
"version": "0.0.0"
Expand Down
2 changes: 1 addition & 1 deletion runway/core/providers/aws/s3/_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def head(self) -> BaseResponse:
try:
return BaseResponse(
**self.client.head_bucket(Bucket=self.name)
or {} # pyright: ignore[reportArgumentType]
or {} # pyright: ignore[reportCallIssue]
)
except ClientError as err:
LOGGER.debug(
Expand Down
2 changes: 1 addition & 1 deletion runway/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def parse_obj( # noqa: C901
lookup_query=lookup_query,
variable_type=variable_type,
)
tokens[last_open : (next_close + 1)] = [lookup] # type: ignore
tokens[last_open : (next_close + 1)] = [lookup]
else:
break # cov: ignore

Expand Down

0 comments on commit a74ccee

Please sign in to comment.