Refactor Module in interfaces to ModuleInterface.

This commit is contained in:
Mike Auty
2018-08-09 13:55:16 +01:00
parent 9e4875009d
commit 366269deb2
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -79,11 +79,11 @@ class ContextInterface(object, metaclass = ABCMeta):
def module(self,
module_name: str,
layer_name: str,
offset: int) -> 'Module':
offset: int) -> 'ModuleInterface':
"""Create a module object """
class Module(validity.ValidityRoutines, metaclass = ABCMeta):
class ModuleInterface(validity.ValidityRoutines, metaclass = ABCMeta):
"""Maintains state concerning a particular loaded module in memory
This object is OS-independent.