forked from mirrors/thatmattlove-hyperglass
7 lines
157 B
Python
7 lines
157 B
Python
# Project
|
|
from hyperglass.models.config.devices import Device
|
|
|
|
|
|
class MockDevice(Device):
|
|
def has_directives(self, *_: str) -> bool:
|
|
return True
|