pysvp64asm: fix coding style
authorDmitry Selyutin <ghostmansd@gmail.com>
Thu, 13 Oct 2022 13:59:27 +0000 (16:59 +0300)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 2 Jun 2023 18:51:15 +0000 (19:51 +0100)
src/openpower/sv/trans/pysvp64dis.py

index d5ddba91042557f3423d5093e085ea9809f2512f..03de5435cd66afb669636a6a2ea38ed6dfe4ccc8 100644 (file)
@@ -1,7 +1,7 @@
 import argparse as _argparse
 import enum as _enum
 import sys as _sys
-import os
+import os as _os
 from io import BytesIO
 
 from openpower.decoder.power_enums import (
@@ -87,7 +87,7 @@ def main():
 
     # if logging requested do not disable it.
     if not args['log']:
-        os.environ['SILENCELOG'] = '1'
+        _os.environ['SILENCELOG'] = '1'
 
     # load instructions and dump them
     insns = load(**args)