Skip to content

Commit 4c3b2fe

Browse files
authored
Merge pull request #249 from daniel7an/fix/issue-248-load-nonetype
Fix .load command failing with 'NoneType object not iterable'
2 parents 5a774d6 + b499185 commit 4c3b2fe

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

litecli/packages/special/dbcommands.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ def load_extension(cur: DBCursor, arg: str, **_: Any) -> None:
254254
conn = cur.connection
255255
conn.enable_load_extension(True)
256256
conn.load_extension(path)
257+
return [(None, None, None, "")]
257258

258259

259260
@special_command(

0 commit comments

Comments
 (0)