Skip to content

Commit

Permalink
Add future annotations:
Browse files Browse the repository at this point in the history
  • Loading branch information
tcamise-gpsw committed Jul 19, 2024
1 parent 8363701 commit 97a8d0d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Implementation of Open GoPro API version 2.0"""

from __future__ import annotations

from typing import Final

from open_gopro.communicator_interface import GoProHttp, GoProWirelessInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Manage a Bluetooth connection using bleak."""

from __future__ import annotations

import asyncio
import logging
import platform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Exceptions that pertain to Gopro-level functionality."""

from __future__ import annotations

from typing import Callable


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Open GoPro WiFi Client Implementation"""

from __future__ import annotations

import logging
from typing import Optional

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""Wifi Controller Interface Definition."""

from __future__ import annotations

import logging
from abc import ABC, abstractmethod
from enum import IntEnum, auto
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""MDNS utility functions"""

from __future__ import annotations

import asyncio
import logging
from typing import Any
Expand Down

0 comments on commit 97a8d0d

Please sign in to comment.