fix
This commit is contained in:
parent
31b62a2d81
commit
2bb6b13e07
|
@ -753,6 +753,7 @@ class Device(Thing):
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
def get_from_db(self):
|
def get_from_db(self):
|
||||||
|
if 'property_hid' in app.blueprints.keys():
|
||||||
try:
|
try:
|
||||||
from modules.device.utils import get_from_db
|
from modules.device.utils import get_from_db
|
||||||
|
|
||||||
|
@ -771,7 +772,7 @@ class Device(Thing):
|
||||||
).first()
|
).first()
|
||||||
|
|
||||||
def set_hid(self):
|
def set_hid(self):
|
||||||
if 'property_hid' not in app.blueprints.keys():
|
if 'property_hid' in app.blueprints.keys():
|
||||||
try:
|
try:
|
||||||
from modules.device.utils import set_hid
|
from modules.device.utils import set_hid
|
||||||
|
|
||||||
|
|
Reference in New Issue