mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 03:12:34 +01:00
Gem5Device: Fix issue with init arguments
- This patch addresses an issue with the arguments passed the BaseGem5Device __init__. With this patch these are no longer passed in as they are not required in the base device implementation.
This commit is contained in:
@@ -105,7 +105,7 @@ class BaseGem5Device(object):
|
||||
return True
|
||||
|
||||
# pylint: disable=E0203
|
||||
def __init__(self, _):
|
||||
def __init__(self):
|
||||
self.logger = logging.getLogger('gem5Device')
|
||||
|
||||
# The gem5 subprocess
|
||||
|
Reference in New Issue
Block a user