13 lines
216 B
Python
13 lines
216 B
Python
|
|
# Python imports
|
||
|
|
|
||
|
|
# Lib imports
|
||
|
|
|
||
|
|
# Application imports
|
||
|
|
from .default import DefaultHandler
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class PythonHandler(DefaultHandler):
|
||
|
|
"""Uses default handling, can override if Python needs special logic."""
|
||
|
|
...
|