1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-14 13:29:28 +00:00

Remove unused imports

This commit is contained in:
Mike Naberezny 2014-01-25 20:31:42 -08:00
parent a72b1aae60
commit c483450157
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from py65.utils.conversions import convert_to_bin, convert_to_bcd, itoa
from py65.utils.conversions import itoa
from py65.utils.devices import make_instruction_decorator

View File

@ -1,5 +1,4 @@
from py65.devices import mpu6502
from py65.utils.devices import make_instruction_decorator
class MPU(mpu6502.MPU):