Skip to content

Commit 857c2e5

Browse files
committed
Fix formatting
1 parent f930e37 commit 857c2e5

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

crud-operations/crud_sql.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ def connect_to_db(db_path):
77

88
if __name__ == "__main__":
99
with connect_to_db("birds.db") as connection:
10-
connection.execute("""
10+
connection.execute(
11+
"""
1112
CREATE TABLE IF NOT EXISTS bird (
1213
id INTEGER PRIMARY KEY AUTOINCREMENT,
1314
name TEXT NOT NULL
1415
);
15-
""")
16+
"""
17+
)

0 commit comments

Comments
 (0)