Skip to content

Commit

Permalink
more lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhjotsbhatia-ca committed Oct 31, 2024
1 parent 6e1cff4 commit d84789d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion androidtv/basetv/basetv.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ def _cmd_current_app_media_session_state(self):
if constants.CUSTOM_CURRENT_APP_MEDIA_SESSION_STATE in self._custom_commands:
return self._custom_commands[constants.CUSTOM_CURRENT_APP_MEDIA_SESSION_STATE]


# Is this an Askey STI6130 Device?
if (
self.DEVICE_ENUM == constants.DeviceEnum.ANDROIDTV
Expand Down
4 changes: 3 additions & 1 deletion androidtv/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ class DeviceEnum(IntEnum):
CMD_MAC_ETH0 = "ip addr show eth0 | grep -m 1 ether"

#: The command used for getting the device properties
CMD_DEVICE_PROPERTIES = CMD_MANUFACTURER + " && " + CMD_MODEL + " && " + CMD_SERIALNO + " && " + CMD_VERSION + " && " + CMD_PRODUCT_ID
CMD_DEVICE_PROPERTIES = (
CMD_MANUFACTURER + " && " + CMD_MODEL + " && " + CMD_SERIALNO + " && " + CMD_VERSION + " && " + CMD_PRODUCT_ID
)


# ADB key event codes
Expand Down

0 comments on commit d84789d

Please # to comment.