Pycode Python source code analyser error.
| 116 | |
| 117 | |
| 118 | class PycodeError(Exception): |
| 119 | """Pycode Python source code analyser error.""" |
| 120 | |
| 121 | def __str__(self) -> str: |
| 122 | res = self.args[0] |
| 123 | if len(self.args) > 1: |
| 124 | res += ' (exception was: %r)' % self.args[1] |
| 125 | return res |
| 126 | |
| 127 | |
| 128 | class NoUri(Exception): |
no outgoing calls
no test coverage detected