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

Add type hints for ImageMode #7633

Merged
merged 2 commits into from
Dec 23, 2023
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
13 changes: 10 additions & 3 deletions src/PIL/ImageMode.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,25 @@
class ModeDescriptor:
"""Wrapper for mode strings."""

def __init__(self, mode, bands, basemode, basetype, typestr):
def __init__(
self,
mode: str,
bands: str | tuple[str, ...],
hugovk marked this conversation as resolved.
Show resolved Hide resolved
basemode: str,
basetype: str | tuple[str, ...],
hugovk marked this conversation as resolved.
Show resolved Hide resolved
typestr: str,
) -> None:
self.mode = mode
self.bands = bands
self.basemode = basemode
self.basetype = basetype
self.typestr = typestr

def __str__(self):
def __str__(self) -> str:
return self.mode


def getmode(mode):
def getmode(mode: str) -> ModeDescriptor:
"""Gets a mode descriptor for the given mode."""
global _modes
if not _modes:
Expand Down
Loading