Skip to content

Commit

Permalink
Update to latest black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rikroe committed Feb 11, 2024
1 parent 47406dd commit 6ce2869
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion bimmer_connected/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
This library is not affiliated with or endorsed by BMW Group.
"""


from importlib.metadata import version

__version__ = version("bimmer_connected")
1 change: 1 addition & 0 deletions bimmer_connected/api/regions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get the right url for the different countries."""

from base64 import b64decode
from typing import List

Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""URLs for different services and error code mapping."""

from enum import Enum


Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Fixtures for BMW tests."""

from collections import deque
from typing import Deque, Generator, Optional

Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for API that are not covered by other tests."""

import json

import httpx
Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/tests/test_remote_services.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test for remote_services."""

from unittest import mock
from uuid import uuid4

Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for utils."""

import datetime
import json

Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/tests/test_vehicle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for MyBMWVehicle."""

import pytest
import respx

Expand Down
1 change: 0 additions & 1 deletion bimmer_connected/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""General utils and base classes used in the library."""


import datetime
import inspect
import json
Expand Down
1 change: 0 additions & 1 deletion bimmer_connected/vehicle/fuel_and_battery.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Generals models used for bimmer_connected."""


import datetime
import logging
from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions bimmer_connected/vehicle/vehicle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Models state and remote services of one vehicle."""

import datetime
import logging
from typing import TYPE_CHECKING, Dict, List, Optional, Tuple, Type, Union
Expand Down

0 comments on commit 6ce2869

Please sign in to comment.