audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

3b03f7450c1a441cbccab1dceedc8aec250daf9c

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2024-10-19T16:41:42Z

explicitly import pandas
 .github/workflows/pylint.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
index c73e032..e201d68 100644
--- a/.github/workflows/pylint.yml
+++ b/.github/workflows/pylint.yml
@@ -17,7 +17,7 @@ jobs:
     - name: Install dependencies
       run: |
         python -m pip install --upgrade pip
-        pip install pylint
+        pip install pylint pandas
     - name: Analysing the code with pylint
       run: |
         pylint $(git ls-files '*.py')