aboutsummaryrefslogtreecommitdiff
path: root/debug/testlib.py
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2020-07-01 08:28:11 -0700
committerGitHub <noreply@github.com>2020-07-01 08:28:11 -0700
commitf92842f91644092960ac7946a61ec2895e543cec (patch)
tree77e77bd24c97b268bbb954bebb0f8c6fea2d0cea /debug/testlib.py
parent08674a7bca3456d8c7dd5aff32e01203b4c02496 (diff)
downloadriscv-tests-f92842f91644092960ac7946a61ec2895e543cec.zip
riscv-tests-f92842f91644092960ac7946a61ec2895e543cec.tar.gz
riscv-tests-f92842f91644092960ac7946a61ec2895e543cec.tar.bz2
Make pylint happy. (#285)
Diffstat (limited to 'debug/testlib.py')
-rw-r--r--debug/testlib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/debug/testlib.py b/debug/testlib.py
index e003fdc..1b90caa 100644
--- a/debug/testlib.py
+++ b/debug/testlib.py
@@ -31,6 +31,7 @@ def find_file(path):
class CompileError(Exception):
def __init__(self, stdout, stderr):
+ super().__init__()
self.stdout = stdout
self.stderr = stderr