Skip to content

Commit 19224d1

Browse files
committed
ci: Fix linting issue
1 parent 31df480 commit 19224d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PyFunceble/cli/migrators/mariadb/file_and_status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def migrate(self) -> "FileAndStatusMigrator":
106106

107107
destination = get_destination_from_origin(file_info["path"])
108108

109-
for status in self.get_rows(
110-
f"SELECT * from pyfunceble_status WHERE file_id = {file_info['id']}" # nosec: B608 # Self-Controlled Input
109+
for status in self.get_rows( # nosec: B608 # Self-Controlled Input
110+
"SELECT * from pyfunceble_status WHERE file_id = {file_info['id']}"
111111
):
112112
if (
113113
self.continuous_integration

0 commit comments

Comments
 (0)