mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
8 lines
151 B
Python
8 lines
151 B
Python
from .base import PostProcessorBase
|
|
|
|
# protect against unavailable tornado
|
|
try:
|
|
from .serve import ServePostProcessor
|
|
except ImportError:
|
|
pass
|