Commit daa7635
committed
Incorrect waring in case of Python
For the aws cli project we got the warning:
```
awscli/botocore/vendored/six.py:779: warning: documented symbol 'print_(*args ** awscli::botocore::vendored::six::kwargs' was not declared or defined.
```
note the missing `,` and at the end the missing`)`.
This is due to the fact that there was (twice) the definition `def print_(*args, **kwargs):` and here the `(*` for python was not handled properly.1 parent 3b8b4a2 commit daa7635
1 file changed
Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| 73 | + | |
73 | 74 | | |
74 | 75 | | |
75 | 76 | | |
| |||
176 | 177 | | |
177 | 178 | | |
178 | 179 | | |
| 180 | + | |
179 | 181 | | |
180 | 182 | | |
181 | 183 | | |
| |||
342 | 344 | | |
343 | 345 | | |
344 | 346 | | |
| 347 | + | |
345 | 348 | | |
346 | 349 | | |
347 | 350 | | |
| |||
0 commit comments