File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,14 @@ disable=
24
24
global-statement, # W0603: Ignore global statement usage
25
25
no-name-in-module, # E0611: Ignore unresolved module names
26
26
no-member, # E1101: Ignore module has no 'member'
27
- pointless-string-statement, # W0105: Ignore pointless string statement
27
+ pointless-string-statement, # W0105: Ignore pointless string statements
28
28
unnecessary-comprehension, # R1721: Ignore unnecessary comprehensions
29
29
fixme, # W0511: Ignore TODO comments
30
30
too-many-instance-attributes, # R0902: Ignore too many attributes in class
31
- too-many-positional-arguments # R0917: Ignore too many positional arguments
31
+ too-many-positional-arguments, # R0917: Ignore too many positional arguments
32
+ raise-missing-from, # W0707: Ignore re-raising without 'raise from'
33
+ import-outside-toplevel, # C0415: Ignore imports outside top-level
34
+ no-value-for-parameter # E1120: Ignore missing arguments in function calls
32
35
33
36
[TYPECHECK]
34
37
generated-members =get_bearer_token_provider
You can’t perform that action at this time.
0 commit comments