1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-01-21 06:30:15 +00:00

Remove unused variable

This commit is contained in:
Mike Naberezny 2016-01-30 10:29:07 -08:00
parent 845452ccd7
commit 0ba44d35f0

View File

@ -1,6 +1,5 @@
__version__ = '0.25.dev0' __version__ = '0.25.dev0'
import os
import sys import sys
py_version = sys.version_info[:2] py_version = sys.version_info[:2]
@ -14,7 +13,6 @@ else:
raise RuntimeError('On Python 2, Py65 requires Python 2.6 or later') raise RuntimeError('On Python 2, Py65 requires Python 2.6 or later')
from setuptools import setup, find_packages from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
DESC = """\ DESC = """\
Simulate 6502-based microcomputer systems in Python.""" Simulate 6502-based microcomputer systems in Python."""