Skip to content

Commit

Permalink
Merge pull request #261 from fusion-energy/improved_import
Browse files Browse the repository at this point in the history
[skip ci] removed duplicate import
  • Loading branch information
shimwell authored Aug 21, 2022
2 parents 3a2e45f + 39ef5d6 commit 8539e63
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions paramak/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from tempfile import mkstemp
from typing import List, Optional, Tuple, Union

import tempfile
import cadquery as cq
import numpy as np
import plotly.graph_objects as go
Expand Down Expand Up @@ -93,7 +92,7 @@ def export_solids_to_dagmc_h5m(
from brep_to_h5m import brep_to_h5m
import brep_part_finder as bpf

tmp_brep_filename = tempfile.mkstemp(suffix=".brep", prefix="paramak_")[1]
tmp_brep_filename = mkstemp(suffix=".brep", prefix="paramak_")[1]

# saves the reactor as a Brep file with merged surfaces
export_solids_to_brep(solids=solids, filename=tmp_brep_filename)
Expand Down

0 comments on commit 8539e63

Please sign in to comment.