Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codechimp committed Jun 3, 2024
1 parent 9675739 commit 523dfee
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion custom_components/mealie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from awesomeversion.awesomeversion import AwesomeVersion

import homeassistant.helpers.config_validation as cv
import voluptuous as vol
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
Expand Down
4 changes: 0 additions & 4 deletions custom_components/mealie/api.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
"""Mealie API Client."""

import asyncio
import logging
import socket

import aiohttp
from asyncio import timeout

Expand Down
2 changes: 1 addition & 1 deletion custom_components/mealie/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(
"""Create the Mealie Calendar Entity."""
super().__init__(entity_description=None, coordinator=coordinator)
self._attr_name = None
self.entity_id = f"calendar.mealie"
self.entity_id = "calendar.mealie"
self._attr_unique_id = f"{config_entry_id}-mealplans"
self._attr_has_entity_name = True
self.domain_config = domain_config
Expand Down
2 changes: 0 additions & 2 deletions custom_components/mealie/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from __future__ import annotations

from dataclasses import dataclass

from homeassistant.helpers.entity import DeviceInfo, EntityDescription
from homeassistant.helpers.update_coordinator import CoordinatorEntity

Expand Down

0 comments on commit 523dfee

Please sign in to comment.