Skip to content

Commit

Permalink
isort fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nschloe committed Jan 2, 2020
1 parent 4fe1964 commit 6c8d029
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions meshio/xdmf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
http://www.xdmf.org/index.php/XDMF_Model_and_Format
"""
import os
from io import BytesIO
import xml.etree.ElementTree as ET
from io import BytesIO

import numpy

from .._common import cell_data_from_raw, raw_from_cell_data, write_xml, CDATA
from .._common import CDATA, cell_data_from_raw, raw_from_cell_data, write_xml
from .._exceptions import ReadError, WriteError
from .._helpers import register
from .._mesh import Mesh
Expand Down
2 changes: 1 addition & 1 deletion meshio/xdmf/time_series.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from io import BytesIO
import os
import xml.etree.ElementTree as ET
from io import BytesIO

import numpy

Expand Down
1 change: 0 additions & 1 deletion test/test_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import helpers
import meshio


test_set = [helpers.line_mesh, helpers.tri_mesh, helpers.tri_mesh_2d, helpers.quad_mesh]


Expand Down

0 comments on commit 6c8d029

Please sign in to comment.