mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
Go back to try/except on test_diff_tally StringIO
This commit is contained in:
parent
2573fba5fa
commit
24ae87ea4c
1 changed files with 4 additions and 1 deletions
|
|
@ -2,7 +2,10 @@
|
|||
|
||||
import glob
|
||||
import os
|
||||
from io import StringIO
|
||||
try:
|
||||
from StringIO import StringIO
|
||||
except:
|
||||
from io import StringIO
|
||||
import sys
|
||||
|
||||
import pandas as pd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue