File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ PackageCompat type.
1111
1212## License
1313
14- [[ find in source code]] ( ../../licensecheck/types.py#L25 )
14+ [[ find in source code]] ( ../../licensecheck/types.py#L27 )
1515
1616``` python
1717class License (Enum ):
@@ -33,7 +33,7 @@ License Enum to hold a set of potential licenses.
3333
3434## PackageCompat
3535
36- [[ find in source code]] ( ../../licensecheck/types.py#L19 )
36+ [[ find in source code]] ( ../../licensecheck/types.py#L21 )
3737
3838``` python
3939class PackageCompat (PackageInfo ):
@@ -47,7 +47,7 @@ PackageCompat type.
4747
4848## PackageInfo
4949
50- [[ find in source code]] ( ../../licensecheck/types.py#L7 )
50+ [[ find in source code]] ( ../../licensecheck/types.py#L9 )
5151
5252``` python
5353class PackageInfo (typing .TypedDict ):
Original file line number Diff line number Diff line change 11"""Entry point for python -m licensecheck."""
2+ from __future__ import annotations
3+
24from . import cli
35
46cli ()
Original file line number Diff line number Diff line change 11"""PackageCompat type.
22"""
3+ from __future__ import annotations
4+
35import typing
46from enum import Enum
57
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " licensecheck"
3- version = " 2021.5.1 "
3+ version = " 2021.5.2 "
44license = " mit"
55description = " Output the licenses used by dependencies and check if these are compatible with the project license"
66authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments