mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 05:05:30 -04:00
Add missing 'import sys' in helpers.py
This commit is contained in:
parent
e11364257c
commit
f603644212
1 changed files with 3 additions and 2 deletions
|
|
@ -1,11 +1,12 @@
|
|||
"""
|
||||
Class for normalizing fission energy deposition
|
||||
"""
|
||||
import bisect
|
||||
from collections import defaultdict
|
||||
from copy import deepcopy
|
||||
from itertools import product
|
||||
from numbers import Real
|
||||
import bisect
|
||||
from collections import defaultdict
|
||||
import sys
|
||||
|
||||
from numpy import dot, zeros, newaxis, asarray
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue