Skip to content

Commit f8d9972

Browse files
Bump mypy from 0.982 to 0.990 (#180)
* Bump mypy from 0.982 to 0.990 Bumps [mypy](https://github.com/python/mypy) from 0.982 to 0.990. - [Release notes](https://github.com/python/mypy/releases) - [Commits](python/mypy@v0.982...v0.990) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * mypy 0.990 needs this ignore Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael R. Crusoe <[email protected]>
1 parent 740615f commit f8d9972

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cwl_utils/parser/cwl_v1_0_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22
import hashlib
3-
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
3+
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast
44

55
from ruamel import yaml
66
from schema_salad.exceptions import ValidationException

cwl_utils/parser/cwl_v1_1_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22
import hashlib
3-
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
3+
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast
44

55
from ruamel import yaml
66
from schema_salad.exceptions import ValidationException

cwl_utils/parser/cwl_v1_2_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22
import hashlib
3-
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
3+
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast
44

55
from ruamel import yaml
66
from schema_salad.exceptions import ValidationException

mypy-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mypy==0.982
1+
mypy==0.990
22
typing_extensions
33
types-requests
44
types-setuptools>=57.4.0

mypy-stubs/rdflib/namespace/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ __all__ = [
3333

3434
class Namespace(str):
3535
@property
36-
def title(self) -> URIRef: ...
36+
def title(self) -> URIRef: ... # type: ignore[override]
3737
def term(self, name: Any) -> URIRef: ...
3838
def __getitem__(self, key: Any) -> URIRef: ...
3939
def __getattr__(self, name: str) -> URIRef: ...

0 commit comments

Comments
 (0)