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

Support Python codegen for the OpenAPI backend #21316

Merged
merged 21 commits into from
Dec 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pants fix
  • Loading branch information
grihabor committed Aug 18, 2024
commit b854cc113c5fd81221d74ccd61e834da6a433510
6 changes: 4 additions & 2 deletions src/python/pants/backend/python/target_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,13 @@ class PexBinaryDependenciesField(Dependencies):

class MainSpecification(ABC):
@abstractmethod
def iter_pex_args(self) -> Iterator[str]: ...
def iter_pex_args(self) -> Iterator[str]:
...

@property
@abstractmethod
def spec(self) -> str: ...
def spec(self) -> str:
...


@dataclass(frozen=True)
Expand Down
Loading