This commit is contained in:
Simon Willison 2019-07-09 04:42:40 -07:00 committed by GitHub
commit b0a2f897f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ This will create ``my_database.db`` if it does not already exist. You can also p
db = Database(sqlite3.connect("my_database.db"))
If you want to create an in-memory database, you con do so like this:
If you want to create an in-memory database, you can do so like this:
.. code-block:: python