usage example fix

This commit is contained in:
AF 2022-11-21 02:18:02 +00:00 committed by parrrate
parent 4adb27f16c
commit 3b4e3822e4
Signed by: alisa
SSH Key Fingerprint: SHA256:vNY4pdIZvO1FYJKHROkdHLtvyopizvZVAEwg9AF6h04

View File

@ -26,7 +26,7 @@ Basic functionality
from ptvp35 import DbFactory, KVJson
async def main():
async with DbFactory(pathlib.Path('example.db', kvfactory=KVJson())) as connection:
async with DbFactory(pathlib.Path('example.db'), kvfactory=KVJson()) as connection:
await _main(connection)
Different ways to get/set a value: