Skip to content

Commit 3a6bd1f

Browse files
committed
Update copyright headers
1 parent ca481c6 commit 3a6bd1f

File tree

9 files changed

+10
-9
lines changed

9 files changed

+10
-9
lines changed

aiosqlite/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""asyncio bridge to the standard sqlite3 module"""

aiosqlite/context.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44

aiosqlite/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""

aiosqlite/cursor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import sqlite3

aiosqlite/tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
from .smoke import SmokeTest

aiosqlite/tests/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import unittest

aiosqlite/tests/helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import logging

aiosqlite/tests/perf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""

aiosqlite/tests/smoke.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
3+
34
import asyncio
45
import sqlite3
56
from pathlib import Path

0 commit comments

Comments
 (0)