Skip to content

Commit

Permalink
python: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nrybowski committed Feb 7, 2025
1 parent b5d55f2 commit 97f7fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dune-mpf/dune_mpf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytoml
import yaml

from dune_mpf import _dune_mpf as dune_mpf
from dune_mpf import _dune_mpf
import mpf


Expand Down Expand Up @@ -34,7 +34,7 @@ def setup():

# Import DUNE module on every phynode
with mpf.client[:].sync_imports(quiet=False):
from dune_mpf import _dune_mpf as dune_mpf
from dune_mpf import _dune_mpf

# Send DUNE context to every phynode
mpf.client[:].push({'dune': dune})
Expand Down
2 changes: 0 additions & 2 deletions dune-mpf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,6 @@ impl MpfDune {
}

fn setup(&self, phynode: String) {
println!("here");
// tracing_subscriber::fmt().init();
let _ = span!(Level::INFO, "mpf");
info!("phynode <{phynode}> setup");
self.0.phynode_setup(phynode);
Expand Down

0 comments on commit 97f7fce

Please sign in to comment.