Reorder python imports in accordance with PEP8 in external moab test file

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
helen-brooks 2021-06-18 09:15:47 +01:00 committed by GitHub
parent 32933587b9
commit d4bf1c9b6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,20 +2,19 @@ from pathlib import Path
import os
import shutil
import subprocess
from subprocess import CalledProcessError
import textwrap
import glob
from itertools import product
import openmc
import openmc.lib
import numpy as np
import pytest
from tests.regression_tests import config
from tests.testing_harness import PyAPITestHarness
from subprocess import CalledProcessError
pytestmark = pytest.mark.skipif(
not openmc.lib._dagmc_enabled(),
reason="DAGMC is not enabled.")