Skip to content

Commit 3836003

Browse files
committed
chore(sasts): fix typos in docstring
1 parent aff0874 commit 3836003

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

codesectools/sasts/core/sast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class SAST(ABC):
5353
supported_datasets (list[Dataset]): A list of supported dataset classes.
5454
properties (SASTProperties): The properties of the SAST tool.
5555
requirements (SASTRequirements): The requirements for the SAST tool.
56-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
56+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
5757
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
5858
environ (dict[str, str]): Environment variables to set for commands.
5959
output_files (list[tuple[Path, bool]]): Expected output files and

codesectools/sasts/tools/Bearer/sast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class BearerSAST(BuildlessSAST):
2626
supported_dataset_names (list[str]): A list of names of compatible datasets.
2727
properties (SASTProperties): The properties of the SAST tool.
2828
requirements (SASTRequirements): The requirements for the SAST tool.
29-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
29+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
3030
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
3131
output_files (list[tuple[Path, bool]]): A list of expected output files and
3232
whether they are required.

codesectools/sasts/tools/Coverity/sast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class CoveritySAST(BuildlessSAST):
2525
supported_dataset_names (list[str]): A list of names of compatible datasets.
2626
properties (SASTProperties): The properties of the SAST tool.
2727
requirements (SASTRequirements): The requirements for the SAST tool.
28-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
28+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
2929
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
3030
output_files (list[tuple[Path, bool]]): A list of expected output files and
3131
whether they are required.

codesectools/sasts/tools/Cppcheck/sast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class CppcheckSAST(PrebuiltBuildlessSAST):
2424
supported_dataset_names (list[str]): A list of names of compatible datasets.
2525
properties (SASTProperties): The properties of the SAST tool.
2626
requirements (SASTRequirements): The requirements for the SAST tool.
27-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
27+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
2828
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
2929
output_files (list[tuple[Path, bool]]): A list of expected output files and
3030
whether they are required.

codesectools/sasts/tools/SemgrepCE/sast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SemgrepCESAST(BuildlessSAST):
2626
supported_dataset_names (list[str]): A list of names of compatible datasets.
2727
properties (SASTProperties): The properties of the SAST tool.
2828
requirements (SASTRequirements): The requirements for the SAST tool.
29-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
29+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
3030
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
3131
output_files (list[tuple[Path, bool]]): A list of expected output files and
3232
whether they are required.

codesectools/sasts/tools/SnykCode/sast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class SnykCodeSAST(BuildlessSAST):
2222
supported_dataset_names (list[str]): A list of names of compatible datasets.
2323
properties (SASTProperties): The properties of the SAST tool.
2424
requirements (SASTRequirements): The requirements for the SAST tool.
25-
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendred and executed.
25+
commands (list[list[Union[str, tuple[str]]]]): The list of commands templates to be rendered and executed.
2626
valid_codes (list[int]): A list of exit codes indicating that the command did not fail.
2727
output_files (list[tuple[Path, bool]]): A list of expected output files and
2828
whether they are required.

0 commit comments

Comments
 (0)