From: Luke Kenneth Casson Leighton Date: Mon, 11 Feb 2019 07:02:36 +0000 (+0000) Subject: use explicit import (no import *) X-Git-Tag: div_pipeline~2411 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3cbd40d5ac76d61b54aac9deb390476562595e2;p=soc.git use explicit import (no import *) --- diff --git a/TLB/PermissionValidator.py b/TLB/PermissionValidator.py index 86050d23..d0f5b1da 100644 --- a/TLB/PermissionValidator.py +++ b/TLB/PermissionValidator.py @@ -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 + ]