From d3cbd40d5ac76d61b54aac9deb390476562595e2 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 11 Feb 2019 07:02:36 +0000 Subject: [PATCH] use explicit import (no import *) --- TLB/PermissionValidator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 + ] -- 2.30.2