diff --git a/package-lock.json b/package-lock.json index 35cae5034..debccef80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "devDependencies": { "cspell": "^8.17.2", - "pyright": "^1.1.388" + "pyright": "^1.1.392" } }, "node_modules/@cspell/cspell-bundled-dicts": { @@ -1079,9 +1079,9 @@ } }, "node_modules/pyright": { - "version": "1.1.388", - "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.388.tgz", - "integrity": "sha512-AcQhtxh/Dnr3l0CinT2xUzsNHpOFVI304EzwY9Y9A3FC8JOV5YJTC3fvrh6zOgHDUH7S6PYABaUdHr/e4rv8+g==", + "version": "1.1.392", + "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.392.tgz", + "integrity": "sha512-ilLW65Qh7h+PxxDY5M7REv8fPw2of9RRlTLEKUJnovxD9pVoImf1Q8h4nUoHNkxOLTurvTRA/HGcZhwAB9L5IA==", "dev": true, "bin": { "pyright": "index.js", @@ -2087,9 +2087,9 @@ "dev": true }, "pyright": { - "version": "1.1.388", - "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.388.tgz", - "integrity": "sha512-AcQhtxh/Dnr3l0CinT2xUzsNHpOFVI304EzwY9Y9A3FC8JOV5YJTC3fvrh6zOgHDUH7S6PYABaUdHr/e4rv8+g==", + "version": "1.1.392", + "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.392.tgz", + "integrity": "sha512-ilLW65Qh7h+PxxDY5M7REv8fPw2of9RRlTLEKUJnovxD9pVoImf1Q8h4nUoHNkxOLTurvTRA/HGcZhwAB9L5IA==", "dev": true, "requires": { "fsevents": "~2.3.3" diff --git a/package.json b/package.json index 0948a832b..c32e5dfaa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "devDependencies": { "cspell": "^8.17.2", - "pyright": "^1.1.388" + "pyright": "^1.1.392" }, "name": "runway", "version": "0.0.0" diff --git a/runway/core/providers/aws/s3/_bucket.py b/runway/core/providers/aws/s3/_bucket.py index 0586fa280..5f05f6ebd 100644 --- a/runway/core/providers/aws/s3/_bucket.py +++ b/runway/core/providers/aws/s3/_bucket.py @@ -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( diff --git a/runway/variables.py b/runway/variables.py index 510e151c9..36e3cf431 100644 --- a/runway/variables.py +++ b/runway/variables.py @@ -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