File tree 3 files changed +3
-3
lines changed
matter_server/common/helpers
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ def dataclass_from_dict(
283
283
extra_keys = dict_obj .keys () - {f .name for f in dc_fields }
284
284
if extra_keys :
285
285
raise KeyError (
286
- f' Extra key(s) { "," .join (extra_keys )} not allowed for { str (cls )} '
286
+ f" Extra key(s) { ',' .join (extra_keys )} not allowed for { str (cls )} "
287
287
)
288
288
type_hints = cached_type_hints (cls )
289
289
return cls (
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ test = [
54
54
" pytest-asyncio==0.25.2" ,
55
55
" pytest-aiohttp==1.0.5" ,
56
56
" pytest-cov==6.0.0" ,
57
- " ruff==0.8.6 " ,
57
+ " ruff==0.9.1 " ,
58
58
" tomli==2.2.1" ,
59
59
]
60
60
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ lint.extend-select = [
8
8
lint.extend-ignore = [
9
9
" S101" , # Use of assert detected. As these are tests...
10
10
" SLF001" , # Tests will access private/protected members...
11
- " TCH002 " , # pytest doesn't like this one...
11
+ " TC002 " , # pytest doesn't like this one...
12
12
" PT012" , # annoying with tests
13
13
]
You can’t perform that action at this time.
0 commit comments