use explicit import (no import *)
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 11 Feb 2019 07:02:36 +0000 (07:02 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 11 Feb 2019 07:02:36 +0000 (07:02 +0000)
TLB/PermissionValidator.py

index 86050d23da6f12261fe9142d5ce2298d9a75d7b2..d0f5b1da6025d35230ab69a70059d2cbbc06f015 100644 (file)
@@ -1,4 +1,4 @@
-from nmigen import *
+from nmigen import Signal, Module
 from nmigen.cli import main
 
 # The purpose of this Module is to check the Permissions of a given PTE 
@@ -50,4 +50,4 @@ class PermissionValidator():
             ).Else(
                 self.valid.eq(0)
             )
-        ]
\ No newline at end of file
+        ]