From 995288bfb039da6ef5f5a9772f641b4e42549e2b Mon Sep 17 00:00:00 2001 From: Berend Klein Haneveld Date: Tue, 7 May 2024 22:29:56 +0200 Subject: [PATCH] Fix linting --- collagraph/sfc/compiler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/collagraph/sfc/compiler.py b/collagraph/sfc/compiler.py index 6eb937f..70354ba 100644 --- a/collagraph/sfc/compiler.py +++ b/collagraph/sfc/compiler.py @@ -1,12 +1,13 @@ from __future__ import annotations import ast -from collections import defaultdict import logging +from collections import defaultdict from os import environ from pathlib import Path from collagraph import Component + from .parser import CGXParser, Node logger = logging.getLogger(__name__)