Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump black from 23.12.1 to 24.3.0 in /python-sdk #9993

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/admin/extension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handwritten classes/methods that augment the existing Admin API."""

import pachyderm_sdk

from . import ApiStub as _GeneratedApiStub
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/debug/extension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handwritten classes/methods that augment the existing Debug API."""

from datetime import timedelta
from typing import Iterator, List, Optional, TYPE_CHECKING

Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/pfs/_additions.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
Note: These are internally patched and this file should
not be imported directly by users.
"""

import re

from . import (
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/pfs/extension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handwritten classes/methods that augment the existing PFS API."""

import io
import os
from contextlib import contextmanager
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/pps/_additions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Note: These are internally patched and this file should
not be imported directly by users.
"""

from . import CreatePipelineRequest, Service, Spout


Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/pps/extension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handwritten classes/methods that augment the existing PPS API."""

import base64
import json
from typing import Dict
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/api/transaction/extension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Handwritten classes/methods that augment the existing Transaction API."""

from contextlib import contextmanager
from typing import Callable, ContextManager

Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The Client used to interact with a Pachyderm instance."""

import os
from pathlib import Path
from typing import Optional, Union
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functionality for parsing Pachyderm config files."""

import json
import os
import uuid
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/datum_batching.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A high-level decorator for pipeline code that uses the datum-batching feature."""

from functools import wraps
from typing import Callable

Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Errors that can be raised by this library. """

from typing import Union

from grpc import RpcError
Expand Down
1 change: 1 addition & 0 deletions python-sdk/pachyderm_sdk/interceptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Implementation of a gRPC interceptor used to set request metadata
and catch connection errors.
"""

from os import environ
from typing import Callable, Sequence, Optional, Tuple, Union

Expand Down