moto/moto/autoscaling/__init__.py
Steve Pulec f37bad0e00 Lints.
2017-02-23 21:37:43 -05:00

8 lines
340 B
Python

from __future__ import unicode_literals
from .models import autoscaling_backends
from ..core.models import base_decorator, deprecated_base_decorator
autoscaling_backend = autoscaling_backends['us-east-1']
mock_autoscaling = base_decorator(autoscaling_backends)
mock_autoscaling_deprecated = deprecated_base_decorator(autoscaling_backends)