diff --git a/2023/orm/raw_sql_placeholders.py b/2023/orm/raw_sql_placeholders.py index 34babf22..af507789 100644 --- a/2023/orm/raw_sql_placeholders.py +++ b/2023/orm/raw_sql_placeholders.py @@ -21,10 +21,8 @@ def main() -> None: ORDER BY total DESC LIMIT :limit; """ - - placeholder = { - "limit": number_of_top_customers - } + + placeholder = {"limit": number_of_top_customers} for row in cur.execute(raw_sql, placeholder): print(row) diff --git a/2023/shellroast/before/src/UtilPackage/TestingDir/UTestEncoding.py b/2023/shellroast/before/src/UtilPackage/TestingDir/UTestEncoding.py index b5739b75..8b137891 100644 --- a/2023/shellroast/before/src/UtilPackage/TestingDir/UTestEncoding.py +++ b/2023/shellroast/before/src/UtilPackage/TestingDir/UTestEncoding.py @@ -1,9 +1 @@ -import ..Algorithms - - - - - - -