File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/psf/black
3- rev : 22.3 .0
3+ rev : 25.9 .0
44 hooks :
55 - id : black
66 args : ["--target-version", "py36"]
1313 hooks :
1414 - id : isort
1515 - repo : https://github.com/pre-commit/mirrors-mypy
16- rev : v0.910
16+ rev : v1.18.2
1717 hooks :
1818 - id : mypy
1919 args : ["--strict"]
Original file line number Diff line number Diff line change 5454 from typing import TypedDict
5555except ImportError :
5656 # Python 3.7
57- TypedDict = dict
57+ TypedDict = dict # type: ignore[assignment]
5858
5959__version__ = "1.9.0"
6060
Original file line number Diff line number Diff line change @@ -2281,16 +2281,16 @@ def test_kv_21_single_quoted_word_with_double_quote(self) -> None:
22812281
22822282 def test_kv_22_quoted_unicode_wordchar (self ) -> None :
22832283 # "wordchar" means it is in the shlex.wordchars variable.
2284- props = self ._get_props ('KEY="wordchar: \u00CA (E accent grave)"\n ' )
2285- assert props .get ("key" , None ) == "wordchar: \u00CA (E accent grave)"
2284+ props = self ._get_props ('KEY="wordchar: \u00ca (E accent grave)"\n ' )
2285+ assert props .get ("key" , None ) == "wordchar: \u00ca (E accent grave)"
22862286
22872287 def test_kv_23_quoted_unicode_non_wordchar (self ) -> None :
22882288 # "non-wordchar" means it is not in the shlex.wordchars variable.
22892289 props = self ._get_props (
2290- 'KEY="non-wordchar: \u00A1 (inverted exclamation mark)"\n '
2290+ 'KEY="non-wordchar: \u00a1 (inverted exclamation mark)"\n '
22912291 )
22922292 assert (
2293- props .get ("key" , None ) == "non-wordchar: \u00A1 (inverted exclamation mark)"
2293+ props .get ("key" , None ) == "non-wordchar: \u00a1 (inverted exclamation mark)"
22942294 )
22952295
22962296 def test_kv_24_double_quoted_entire_single_quoted_word (self ) -> None :
You can’t perform that action at this time.
0 commit comments