Skip to content

Commit d6b9d57

Browse files
committed
Move identityset into api package
Makes sense since this is an API library tool.
1 parent 8b90d09 commit d6b9d57

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

arch/zx48k/optimizer/basicblock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import api.utils
55

66
from api.debug import __DEBUG__
7-
from identityset import IdentitySet
7+
from api.identityset import IdentitySet
88
from .memcell import MemCell
99
from .labelinfo import LabelInfo
1010
from .helpers import ALL_REGS, END_PROGRAM_LABEL

arch/zx48k/optimizer/labelinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
from identityset import IdentitySet
3+
from api.identityset import IdentitySet
44
from . import common
55
from . import errors
66

0 commit comments

Comments
 (0)