7 lines
143 B
Python
7 lines
143 B
Python
from .base_object import BaseObject
|
|
|
|
|
|
class DevicePinner(BaseObject):
|
|
"""Represents the device pinner"""
|
|
|
|
_item_type = 'device_pinner'
|