File: __init__.py

package info (click to toggle)
crazy-complete 0.3.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,528 kB
  • sloc: python: 13,342; sh: 995; makefile: 68
file content (29 lines) | stat: -rw-r--r-- 619 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2025-2026 Benjamin Abendroth <braph93@gmx.de>

'''Exporting modules.'''

from . import errors
from . import cli, config, utils
from . import shell, bash, fish, zsh
from . import argparse_source, json_source, yaml_source
from . import extended_yaml_parser
from . import scheme_validator
from . import help_parser

__all__ = [
    'errors',
    'cli',
    'config',
    'utils',
    'shell',
    'bash',
    'fish',
    'zsh',
    'argparse_source',
    'json_source',
    'yaml_source',
    'extended_yaml_parser',
    'scheme_validator',
    'help_parser',
]