Skip to content

Commit

Permalink
Update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Sep 10, 2023
1 parent 62af81e commit 55252b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions simplesqlite/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ class SimpleSQLite:
In default, the same as the total number of CPUs.
:param bool profile:
Recording SQL query execution time profile, if the value is |True|.
:param Any **connect_kwargs:
Keyword arguments passing to
`sqlite3.connect <https://docs.python.org/3/library/sqlite3.html#sqlite3.connect>`__.
.. seealso::
:py:meth:`.connect`
Expand Down Expand Up @@ -248,6 +251,9 @@ def connect(self, database_path: str, mode: str = "a") -> None:
"""
Connect to a SQLite database.
Parameters to open a connection to an SQLite database are passed via
``connect_kwargs`` argument of the constructor.
:param str database_path:
Path to the SQLite database file to be connected.
:param str mode:
Expand Down

0 comments on commit 55252b7

Please sign in to comment.