From d4bf1c9b6f19c33a540a360513454dd36e845e32 Mon Sep 17 00:00:00 2001 From: helen-brooks <67463845+helen-brooks@users.noreply.github.com> Date: Fri, 18 Jun 2021 09:15:47 +0100 Subject: [PATCH] Reorder python imports in accordance with PEP8 in external moab test file Co-authored-by: Paul Romano --- tests/regression_tests/external_moab/test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/regression_tests/external_moab/test.py b/tests/regression_tests/external_moab/test.py index c6d3325403..8680effcb8 100644 --- a/tests/regression_tests/external_moab/test.py +++ b/tests/regression_tests/external_moab/test.py @@ -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.")