Skip to content

Commit

Permalink
Run hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
bachya committed Mar 1, 2024
1 parent 76ed23b commit 0ebebfe
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Run an example script to quickly test."""

import asyncio
import logging

Expand Down
1 change: 1 addition & 0 deletions pytile/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Define module-level imports."""

from .api import async_login # noqa
1 change: 1 addition & 0 deletions pytile/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define an object to work directly with the API."""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions pytile/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define package constants."""

import logging

LOGGER = logging.getLogger(__package__)
1 change: 1 addition & 0 deletions pytile/tile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define a Tile object."""

from __future__ import annotations

from collections.abc import Awaitable, Callable
Expand Down
1 change: 1 addition & 0 deletions tests/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define common test utilities."""

import os

TILE_CLIENT_UUID = "2cc56adc-b96a-4293-9b94-eda716e0aa17"
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define fixtures, constants, etc. available for all tests."""

import json
import re
from collections.abc import Generator
Expand Down
1 change: 1 addition & 0 deletions tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define tests for the client object."""

import re
from time import time
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions tests/test_tile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define tests for the client object."""

import logging
from datetime import datetime
from typing import Any
Expand Down

0 comments on commit 0ebebfe

Please sign in to comment.