From 1a3bc19dce791faabcd7e78b76b716c57153cae7 Mon Sep 17 00:00:00 2001 From: "Johan B.W. de Vries" Date: Sat, 7 Jun 2025 14:38:54 +0200 Subject: [PATCH] Fix linting issues --- phasm/compiler.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/phasm/compiler.py b/phasm/compiler.py index 4851e95..439828a 100644 --- a/phasm/compiler.py +++ b/phasm/compiler.py @@ -5,15 +5,13 @@ import struct from typing import List from . import ourlang, wasm -from .build import builtins from .build.base import TypeInfo from .stdlib import alloc as stdlib_alloc from .stdlib import types as stdlib_types from .type3.functions import FunctionArgument, TypeVariable -from .type3.routers import NoRouteForTypeException, TypeApplicationRouter +from .type3.routers import NoRouteForTypeException from .type3.typeclasses import Type3ClassMethod from .type3.types import ( - IntType3, Type3, TypeApplication_Struct, TypeApplication_Type,