Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
smonicas committed Feb 20, 2024
1 parent a9163d2 commit c0d4dde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slither/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ def choose_printers(
###################################################################################


def parse_filter_paths(args: argparse.Namespace, filter: bool) -> List[str]:
paths = args.filter_paths if filter else args.include_paths
def parse_filter_paths(args: argparse.Namespace, filter_path: bool) -> List[str]:
paths = args.filter_paths if filter_path else args.include_paths
if paths:
return paths.split(",")
return []
Expand Down

0 comments on commit c0d4dde

Please sign in to comment.