(arg)
| 217 | annotations = annotations or {} |
| 218 | |
| 219 | def formatargandannotation(arg): |
| 220 | result = formatarg(arg) |
| 221 | if arg in annotations: |
| 222 | result += ": " + formatannotation(annotations[arg]) |
| 223 | return result |
| 224 | |
| 225 | specs = [] |
| 226 | if defaults: |
no outgoing calls
no test coverage detected