Skip to content

Commit

Permalink
Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
babenek committed Nov 4, 2024
1 parent 7c98bad commit 2bab5c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion credsweeper/deep_scanner/deep_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DeepScanner(
PptxScanner, #
TarScanner, #
XmlScanner, #
XlsxScanner, #
XlsxScanner, #
ZipScanner
): # yapf: disable
"""Advanced scanner with recursive exploring of data"""
Expand Down
4 changes: 2 additions & 2 deletions credsweeper/deep_scanner/xlsx_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
from abc import ABC
from typing import List

import pandas as pd

from credsweeper.credentials import Candidate
from credsweeper.deep_scanner.abstract_scanner import AbstractScanner
from credsweeper.file_handler.data_content_provider import DataContentProvider
from credsweeper.file_handler.string_content_provider import StringContentProvider

import pandas as pd

logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 2bab5c9

Please sign in to comment.