1#!/bin/bash 2 3# Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org) 4# See the file 'LICENSE' for copying permission 5 6# Removes trailing spaces from blank lines inside project files 7find . -type f -iname '*.py' -exec sed -i 's/^[ \t]*$//' {} \; 8 9