jacked   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 19
dl 0
loc 26
rs 10
c 0
b 0
f 0
wmc 0
1
import jacked._inject
0 ignored issues
show
Coding Style introduced by
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
import jacked._injectable
3
import jacked._container
4
import jacked._typing
5
import jacked._discover
6
import jacked._exceptions
7
8
9
# Types:
10
Injectable = jacked._injectable.Injectable
11
Container = jacked._container.Container
12
T = jacked._typing.T
13
Module = jacked._typing.Module
14
NoneType = jacked._typing.NoneType
15
AttrDict = jacked._typing.AttrDict
16
17
# Functions:
18
inject = jacked._inject.inject
19
injectable = jacked._injectable.injectable
20
discover = jacked._discover.discover
21
22
# Exceptions:
23
JackedError = jacked._exceptions.JackedError
24
InvalidUsageError = jacked._exceptions.InvalidUsageError
25
InjectionError = jacked._exceptions.InjectionError
26