File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ HIGH = 3
1717
1818## Level
1919
20- [[ find in source code]] ( ../../simplesecurity/level.py#L11 )
20+ [[ find in source code]] ( ../../simplesecurity/level.py#L13 )
2121
2222``` python
2323class Level (IntEnum ):
@@ -32,7 +32,7 @@ HIGH = 3
3232
3333### Level().\_\_ repr\_\_
3434
35- [[ find in source code]] ( ../../simplesecurity/level.py#L25 )
35+ [[ find in source code]] ( ../../simplesecurity/level.py#L27 )
3636
3737``` python
3838def __repr__ () -> str :
@@ -46,7 +46,7 @@ __repr__ method.
4646
4747### Level().\_\_ str\_\_
4848
49- [[ find in source code]] ( ../../simplesecurity/level.py#L33 )
49+ [[ find in source code]] ( ../../simplesecurity/level.py#L35 )
5050
5151``` python
5252def __str__ () -> str :
@@ -60,7 +60,7 @@ __str__ method (tostring).
6060
6161### Level().toSarif
6262
63- [[ find in source code]] ( ../../simplesecurity/level.py#L47 )
63+ [[ find in source code]] ( ../../simplesecurity/level.py#L49 )
6464
6565``` python
6666def toSarif () -> str :
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " simplesecurity"
3- version = " 2021.3.3 "
3+ version = " 2021.3.4 "
44license = " mit"
55description = " Combine multiple popular python security tools and generate reports or output into different formats"
66authors = [" FredHappyface" ]
Original file line number Diff line number Diff line change 1+
Original file line number Diff line number Diff line change 11""" entry point for python -m simplesecurity """
2+ from __future__ import annotations
3+
24from . import cli
35
46cli ()
Original file line number Diff line number Diff line change 55MED = 2
66HIGH = 3
77"""
8+ from __future__ import annotations
9+
810from enum import IntEnum
911
1012
You can’t perform that action at this time.
0 commit comments