Skip to content
Snippets Groups Projects
Unverified Commit 697e7043 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add documentation to util function.

parent 72311344
No related branches found
No related tags found
No related merge requests found
import pkgutil
from typing import Sequence
def get_app_packages() -> Sequence:
""" Find all packages within the biscuit.apps namespace. """
def get_app_packages():
import biscuit.apps
pkgs = ['biscuit.apps.%s' % i[1] for i in pkgutil.iter_modules(biscuit.apps.__path__)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment