Remove extending of HassLocalizeMixin as it is not needed (#1847)

This commit is contained in:
Ian Richardson 2018-10-24 04:42:09 -05:00 committed by Paulus Schoutsen
parent cf8899fcbe
commit 06bf134bd4

View File

@ -2,7 +2,6 @@ import { html, LitElement } from "@polymer/lit-element";
import "../../../components/ha-card.js";
import { HassLocalizeLitMixin } from "../../../mixins/lit-localize-mixin";
import { LovelaceCard, LovelaceConfig } from "../types.js";
interface Config extends LovelaceConfig {
@ -11,7 +10,7 @@ interface Config extends LovelaceConfig {
url: string;
}
export class HuiIframeCard extends HassLocalizeLitMixin(LitElement)
export class HuiIframeCard extends LitElement
implements LovelaceCard {
protected config?: Config;