File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ PackageCompat type.
11
11
12
12
## License
13
13
14
- [[ find in source code]] ( ../../licensecheck/types.py#L25 )
14
+ [[ find in source code]] ( ../../licensecheck/types.py#L27 )
15
15
16
16
``` python
17
17
class License (Enum ):
@@ -33,7 +33,7 @@ License Enum to hold a set of potential licenses.
33
33
34
34
## PackageCompat
35
35
36
- [[ find in source code]] ( ../../licensecheck/types.py#L19 )
36
+ [[ find in source code]] ( ../../licensecheck/types.py#L21 )
37
37
38
38
``` python
39
39
class PackageCompat (PackageInfo ):
@@ -47,7 +47,7 @@ PackageCompat type.
47
47
48
48
## PackageInfo
49
49
50
- [[ find in source code]] ( ../../licensecheck/types.py#L7 )
50
+ [[ find in source code]] ( ../../licensecheck/types.py#L9 )
51
51
52
52
``` python
53
53
class PackageInfo (typing .TypedDict ):
Original file line number Diff line number Diff line change 1
1
"""Entry point for python -m licensecheck."""
2
+ from __future__ import annotations
3
+
2
4
from . import cli
3
5
4
6
cli ()
Original file line number Diff line number Diff line change 1
1
"""PackageCompat type.
2
2
"""
3
+ from __future__ import annotations
4
+
3
5
import typing
4
6
from enum import Enum
5
7
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " licensecheck"
3
- version = " 2021.5.1 "
3
+ version = " 2021.5.2 "
4
4
license = " mit"
5
5
description = " Output the licenses used by dependencies and check if these are compatible with the project license"
6
6
authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments