Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 2654aa4

Browse files
author
Joel Lee
committed
chore: run pre-commit on all files
1 parent ef1dff9 commit 2654aa4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

LICENSE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
2222
© 2021 GitHub, Inc.
23-

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ See CONTRIBUTING.md for general contribution guidelines.
1111

1212
# Emeritus Maintainers (in alphabetical order)
1313

14-
- [fedden](https://github.com/fedden)
14+
- [fedden](https://github.com/fedden)

tests/test_client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
from __future__ import annotations
2-
from typing import TYPE_CHECKING, Any, Dict
2+
3+
from typing import TYPE_CHECKING
34

45
import pytest
56

67
if TYPE_CHECKING:
78
from supabase import Client
89

10+
911
@pytest.mark.skip(reason="missing permissions on test instance")
1012
def test_client_upload_file(supabase: Client) -> None:
1113
"""Ensure we can upload files to a bucket"""
@@ -33,4 +35,3 @@ def test_client_upload_file(supabase: Client) -> None:
3335
assert image_info is not None
3436
assert image_info.get("metadata", {}).get("mimetype") == mimetype
3537
storage_file.remove([filename])
36-

0 commit comments

Comments
 (0)