diff options
| author | Wander Lairson Costa <wander@redhat.com> | 2026-02-23 13:17:55 -0300 |
|---|---|---|
| committer | Gabriele Monaco <gmonaco@redhat.com> | 2026-04-01 10:16:19 +0200 |
| commit | 0f57f9ad9fbef9a51438ca4153a4059d8169fc1e (patch) | |
| tree | 3f9946b6c679e742e5aa0dba0e5c53e8327bac2b /tools | |
| parent | 0c25d8c8dcdde32db8f8c0c3a42c7e8ff2803a0f (diff) | |
rv/rvgen: remove unused sys import from dot2c
The sys module was imported in the dot2c frontend script but never
used. This import was likely left over from earlier development or
copied from a template that required sys for exit handling.
Remove the unused import to clean up the code and satisfy linters
that flag unused imports as errors.
Signed-off-by: Wander Lairson Costa <wander@redhat.com>
Reviewed-by: Gabriele Monaco <gmonaco@redhat.com>
Link: https://lore.kernel.org/r/20260223162407.147003-13-wander@redhat.com
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/verification/rvgen/dot2c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/verification/rvgen/dot2c b/tools/verification/rvgen/dot2c index bf0c67c5b66c..1012becc7fab 100644 --- a/tools/verification/rvgen/dot2c +++ b/tools/verification/rvgen/dot2c @@ -16,7 +16,6 @@ if __name__ == '__main__': from rvgen import dot2c import argparse - import sys parser = argparse.ArgumentParser(description='dot2c: converts a .dot file into a C structure') parser.add_argument('dot_file', help='The dot file to be converted') |
