File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
from .util import asjson , is_list
8
8
9
9
10
- class AST (dict ):
10
+ class AST (dict ): # noqa: FURB189
11
11
_frozen = False
12
12
13
13
def __init__ (self , * args , ** kwargs ):
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def isname(impl):
101
101
return impl
102
102
103
103
104
- class closure (list ):
104
+ class closure (list ): # noqa: FURB189
105
105
def __hash__ (self ):
106
106
return hash (tuple (self ))
107
107
Original file line number Diff line number Diff line change 22
22
PRAGMA_RE = r'^\s*#include.*$'
23
23
24
24
25
- class _ref (str ):
25
+ class _ref (str ): # noqa: FURB189
26
26
def __repr__ (self ):
27
27
return f'<{ self } >'
28
28
Original file line number Diff line number Diff line change 12
12
from .util .unicode_characters import C_DERIVE
13
13
14
14
15
- class UndefinedStr (str ):
15
+ class UndefinedStr (str ): # noqa: FURB189
16
16
pass
17
17
18
18
You can’t perform that action at this time.
0 commit comments