We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31df480 commit 19224d1Copy full SHA for 19224d1
PyFunceble/cli/migrators/mariadb/file_and_status.py
@@ -106,8 +106,8 @@ def migrate(self) -> "FileAndStatusMigrator":
106
107
destination = get_destination_from_origin(file_info["path"])
108
109
- for status in self.get_rows(
110
- f"SELECT * from pyfunceble_status WHERE file_id = {file_info['id']}" # nosec: B608 # Self-Controlled Input
+ for status in self.get_rows( # nosec: B608 # Self-Controlled Input
+ "SELECT * from pyfunceble_status WHERE file_id = {file_info['id']}"
111
):
112
if (
113
self.continuous_integration
0 commit comments