fhdl.ir: oops, we defined DomainError twice.

This commit is contained in:
whitequark 2018-12-14 12:59:54 +00:00
parent dd00b5e2d6
commit 151d079f01
2 changed files with 2 additions and 5 deletions

View file

@ -5,11 +5,7 @@ from .ast import *
from .cd import *
__all__ = ["Fragment", "DomainError"]
class DomainError(Exception):
pass
__all__ = ["Fragment"]
class Fragment:

View file

@ -3,6 +3,7 @@ from collections import OrderedDict, Iterable
from ..tools import flatten
from .ast import *
from .ast import _StatementList
from .cd import *
from .ir import *