summaryrefslogtreecommitdiff
path: root/tests/test_config/pkgs/scannable/subpackage/notinit.py
blob: 10c35ab7baf183c26b3849a95322befd2772a4c7 (plain)
1
2
3
4
5
6
7
from pyramid.renderers import null_renderer
from pyramid.view import view_config


@view_config(name='subpackage_notinit', renderer=null_renderer)
def subpackage_notinit(context, request):
    return 'subpackage_notinit'