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