8000 sqlite3 module, not sqlite it seems · stephen-codepython/100DaysOfCode@255fc10 · GitHub
[go: up one dir, main page]

Skip to content

Commit 255fc10

Browse files
committed
sqlite3 module, not sqlite it seems
1 parent 4d17023 commit 255fc10

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

079/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*db

079/sqlite_db_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#The exception is handy because on subsequent runs, it prints a message
55
#that the DB exists. It'll also print any other actual errors. Useful!
66

7-
import sqlite
7+
import sqlite3
88
import sys
99

1010
with sqlite3.connect("my_database.db") as connection:

0 commit comments

Comments
 (0)
0