Skip to content

Commit e06131c

Browse files
author
Kareem Zidane
committed
fix style
1 parent 37fba4f commit e06131c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/cs50/_session_util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import sqlalchemy
77

8+
89
def is_sqlite_url(url):
910
return url.startswith("sqlite:///")
1011

src/cs50/_sql_util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import decimal
44

5+
56
def fetch_select_result(result):
67
rows = [dict(row) for row in result.fetchall()]
78
for row in rows:

0 commit comments

Comments
 (0)