pygments-xojo/pygments_xojo/__init__.py
Charles 24fc5530f2 Satisfy pylint.
Signed-off-by: Charles <charles@declareSub.com>
2015-07-26 15:17:04 -04:00

14 lines
365 B
Python

# -*- coding: utf-8 -*-
"""Pygments syntax highlighting for Xojo."""
from pygments.token import Token
# the point of the next statement is that accessing the attribute creates the token type,
# as explained in the pygments token documentation.
#pylint:disable=pointless-statement
Token.Name.XojoType
# __version is also read by setup.py.
__version__ = '0.0.0'