1#!/usr/bin/env python3
2#
3# Call the command line interface for Epydoc.
4#
5
6"""Wrapper around Epydoc that just makes it understand brz's lazy imports."""
7
8# This will enable the lazy_import compatibility code
9import brz_epydoc_uid
10
11from epydoc.cli import cli
12cli()
13
14
15