Skip to content

Commit

Permalink
rename Litequery to AsyncLitequery
Browse files Browse the repository at this point in the history
  • Loading branch information
imryche committed Aug 4, 2024
1 parent 05c1320 commit 506ab03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litequery/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def parse_queries(path):

def setup(database, queries_path):
queries = parse_queries(queries_path)
return Litequery(database, queries)
return AsyncLitequery(database, queries)


def dataclass_factory(cursor, row):
Expand All @@ -68,7 +68,7 @@ def dataclass_factory(cursor, row):
return cls(*row)


class Litequery:
class AsyncLitequery:
def __init__(self, database, queries):
self._database = database
self._conn = None
Expand Down

0 comments on commit 506ab03

Please sign in to comment.