mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
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
|