Skip to content

Commit

Permalink
Fix pyk imports
Browse files Browse the repository at this point in the history
  • Loading branch information
virgil-serbanuta committed Oct 16, 2023
1 parent 5d20c29 commit 002c964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kmxwasm/src/kmxwasm/build.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path

from pyk.kbuild.kbuild import KBuild
from pyk.kbuild.package import Package
from pyk.kbuild.project import Project

from .timing import Timer
from .tools import Tools
Expand All @@ -14,7 +14,7 @@

def kbuild_semantics(output_dir: Path, config_file: Path, target: str, booster: bool) -> Tools:
kbuild = KBuild(output_dir)
package = Package.create(config_file)
package = Project.load(config_file)

t = Timer(f'Kompiling {target}:')
kbuild.kompile(package, target)
Expand Down

0 comments on commit 002c964

Please sign in to comment.