Skip to content

Commit

Permalink
sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sskeirik committed Dec 9, 2024
1 parent deb22a7 commit dacaf9c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pykwasm/src/pykwasm/run_wasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,32 @@

from __future__ import annotations

from enum import Enum
from io import BytesIO
import os
from pathlib import Path
import subprocess
import sys
from enum import Enum
from io import BytesIO
from pathlib import Path
from typing import TYPE_CHECKING

from pyk.kast.inner import KSequence, KSort, KToken, Subst
from pyk.kast.manip import split_config_from
from pyk.kore.syntax import App, Assoc, MLPattern, SortApp
from pyk.ktool.krun import KRun
from wasm import instructions
from wasm.datatypes import GlobalType, MemoryType, Mutability, TableType, TypeIdx, ValType, addresses
from wasm.datatypes.element_segment import ElemModeActive, ElemModeDeclarative, ElemModePassive
from wasm.opcodes import BinaryOpcode
from wasm.parsers import parse_module

from pykwasm import kwasm_ast as a
from pyk.kast.manip import split_config_from
from pyk.kast.inner import KSequence, KSort, KToken, Subst
from pyk.kore.syntax import App, Assoc, MLPattern, SortApp
from pyk.ktool.krun import KRun

if TYPE_CHECKING:
from collections.abc import Iterable
from typing import IO

from pyk.kast import KInner
from pyk.kore.syntax import Pattern
from wasm.datatypes import (
DataSegment,
ElementSegment,
Expand All @@ -46,7 +47,6 @@
StartFunction,
Table,
)
from pyk.kore.syntax import Pattern
from wasm.datatypes.element_segment import ElemMode
from wasm.instructions import BaseInstruction

Expand Down

0 comments on commit dacaf9c

Please sign in to comment.