File: helpers.py

package info (click to toggle)
iottycloud 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 294; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
"""helpers."""

from iottycloud.cloudapi import CloudApi

class CloudApiConcrete(CloudApi):
    """Concrete class to enable testing"""

    async def async_get_access_token(self) -> str:
        return "some-token"