move gdsii import below standard packages
This commit is contained in:
parent
15dc00b63f
commit
f9fb7ccad3
1 changed files with 5 additions and 5 deletions
|
|
@ -1,11 +1,6 @@
|
|||
"""
|
||||
GDSII file format readers and writers
|
||||
"""
|
||||
# python-gdsii
|
||||
import gdsii.library
|
||||
import gdsii.structure
|
||||
import gdsii.elements
|
||||
|
||||
from typing import List, Any, Dict, Tuple, Callable, Union, Sequence, Iterable, Optional
|
||||
import re
|
||||
import io
|
||||
|
|
@ -17,6 +12,11 @@ import logging
|
|||
import pathlib
|
||||
import gzip
|
||||
|
||||
# python-gdsii
|
||||
import gdsii.library
|
||||
import gdsii.structure
|
||||
import gdsii.elements
|
||||
|
||||
from .utils import mangle_name, make_dose_table
|
||||
from .. import Pattern, SubPattern, GridRepetition, PatternError, Label, Shape, subpattern_t
|
||||
from ..shapes import Polygon, Path
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue