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

Complete openpyxl title type annotations #10563

Merged
merged 1 commit into from
Aug 15, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions stubs/openpyxl/openpyxl/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Protocol

from openpyxl.compat.numbers import NUMPY as NUMPY
from openpyxl.reader.excel import load_workbook as load_workbook
from openpyxl.workbook import Workbook as Workbook
Expand All @@ -13,3 +15,7 @@ from ._constants import (
)

open = load_workbook

# Utility types reused elsewhere
class _Decodable(Protocol): # noqa: Y046
def decode(self, __encoding: str) -> str: ...
3 changes: 2 additions & 1 deletion stubs/openpyxl/openpyxl/chart/_chart.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ from typing_extensions import Literal, TypeAlias
from openpyxl.chart.layout import Layout
from openpyxl.chart.legend import Legend
from openpyxl.chart.shapes import GraphicalProperties
from openpyxl.chart.title import TitleDescriptor
from openpyxl.descriptors.base import Alias, Bool, Integer, MinMax, Set, Typed, _ConvertibleToInt
from openpyxl.descriptors.serialisable import Serialisable

Expand All @@ -25,7 +26,7 @@ class ChartBase(Serialisable):
display_blanks: Set[_ChartBaseDisplayBlanks]
ser: Incomplete
series: Alias
title: Incomplete
title: TitleDescriptor
anchor: str
width: int
height: float
Expand Down
7 changes: 4 additions & 3 deletions stubs/openpyxl/openpyxl/chart/axis.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ from typing_extensions import Literal, TypeAlias
from openpyxl.chart.layout import Layout
from openpyxl.chart.shapes import GraphicalProperties
from openpyxl.chart.text import RichText, Text
from openpyxl.chart.title import Title, TitleDescriptor
from openpyxl.descriptors.base import Alias, Typed, _ConvertibleToBool, _ConvertibleToFloat, _ConvertibleToInt
from openpyxl.descriptors.excel import ExtensionList
from openpyxl.descriptors.nested import (
Expand Down Expand Up @@ -70,7 +71,7 @@ class _BaseAxis(Serialisable):
axPos: NestedSet[_BaseAxisAxPos]
majorGridlines: Typed[ChartLines, Literal[True]]
minorGridlines: Typed[ChartLines, Literal[True]]
title: Incomplete
title: TitleDescriptor
numFmt: Incomplete
number_format: Alias
majorTickMark: NestedNoneSet[_BaseAxisTickMark]
Expand All @@ -93,7 +94,7 @@ class _BaseAxis(Serialisable):
axPos: _HasTagAndGet[_BaseAxisAxPos] | _BaseAxisAxPos,
majorGridlines: ChartLines | None,
minorGridlines: ChartLines | None,
title: Incomplete | None,
title: str | Title | None,
numFmt: Incomplete | None,
majorTickMark: _NestedNoneSetParam[_BaseAxisTickMark],
minorTickMark: _NestedNoneSetParam[_BaseAxisTickMark],
Expand All @@ -113,7 +114,7 @@ class _BaseAxis(Serialisable):
axPos: _HasTagAndGet[_BaseAxisAxPos] | _BaseAxisAxPos = "l",
majorGridlines: ChartLines | None = None,
minorGridlines: ChartLines | None = None,
title: Incomplete | None = None,
title: str | Title | None = None,
numFmt: Incomplete | None = None,
majorTickMark: Incomplete | None = None,
minorTickMark: Incomplete | None = None,
Expand Down
4 changes: 2 additions & 2 deletions stubs/openpyxl/openpyxl/chart/reference.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ from openpyxl.descriptors import Strict
from openpyxl.descriptors.base import MinMax, String, _ConvertibleToInt

class DummyWorksheet:
title: Incomplete
def __init__(self, title) -> None: ...
title: str
def __init__(self, title: str) -> None: ...

class Reference(Strict):
min_row: MinMax[int, Literal[False]]
Expand Down
2 changes: 1 addition & 1 deletion stubs/openpyxl/openpyxl/chart/series_factory.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ def SeriesFactory(
values,
xvalues: Incomplete | None = None,
zvalues: Incomplete | None = None,
title: Incomplete | None = None,
title: object = None,
title_from_data: bool = False,
): ...
8 changes: 4 additions & 4 deletions stubs/openpyxl/openpyxl/chart/title.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from _typeshed import Incomplete, Unused
from _typeshed import Unused
from typing import ClassVar
from typing_extensions import Literal

Expand Down Expand Up @@ -35,9 +35,9 @@ class Title(Serialisable):
extLst: Unused = None,
) -> None: ...

def title_maker(text): ...
def title_maker(text) -> Title: ...

class TitleDescriptor(Typed[Title, Incomplete]):
class TitleDescriptor(Typed[Title, Literal[True]]):
expected_type: type[Title]
allow_none: Literal[True]
def __set__(self, instance: Serialisable | Strict, value) -> None: ...
def __set__(self, instance: Serialisable | Strict, value: str | Title | None) -> None: ...
3 changes: 2 additions & 1 deletion stubs/openpyxl/openpyxl/chartsheet/chartsheet.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from _typeshed import Incomplete, Unused
from typing import ClassVar
from typing_extensions import Literal, TypeAlias

from openpyxl import _Decodable
from openpyxl.chartsheet.custom import CustomChartsheetViews
from openpyxl.chartsheet.properties import ChartsheetProperties
from openpyxl.chartsheet.protection import ChartsheetProtection
Expand Down Expand Up @@ -52,7 +53,7 @@ class Chartsheet(_WorkbookChild, Serialisable):
webPublishItems: WebPublishItems | None = None,
extLst: Unused = None,
parent: Incomplete | None = None,
title: str = "",
title: str | _Decodable | None = "",
sheet_state: _ChartsheetSheetState = "visible",
) -> None: ...
def add_chart(self, chart) -> None: ...
Expand Down
6 changes: 4 additions & 2 deletions stubs/openpyxl/openpyxl/workbook/child.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@ from _typeshed import Incomplete
from re import Pattern
from typing_extensions import Final

from openpyxl import _Decodable

INVALID_TITLE_REGEX: Final[Pattern[str]]

def avoid_duplicate_name(names, value): ...

class _WorkbookChild:
HeaderFooter: Incomplete
def __init__(self, parent: Incomplete | None = None, title: Incomplete | None = None) -> None: ...
def __init__(self, parent: Incomplete | None = None, title: str | _Decodable | None = None) -> None: ...
@property
def parent(self): ...
@property
def encoding(self): ...
@property
def title(self) -> str: ...
@title.setter
def title(self, value: str | bytes) -> None: ...
def title(self, value: str | _Decodable) -> None: ...
@property
def oddHeader(self): ...
@oddHeader.setter
Expand Down
5 changes: 3 additions & 2 deletions stubs/openpyxl/openpyxl/workbook/workbook.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ from datetime import datetime
from typing import IO
from typing_extensions import Final

from openpyxl import _Decodable
from openpyxl.chartsheet.chartsheet import Chartsheet
from openpyxl.styles.named_styles import NamedStyle
from openpyxl.workbook.child import _WorkbookChild
Expand Down Expand Up @@ -45,11 +46,11 @@ class Workbook:
def active(self) -> _WorkbookChild | None: ...
@active.setter
def active(self, value: _WorkbookChild | int) -> None: ...
def create_sheet(self, title: str | None = None, index: int | None = None): ...
def create_sheet(self, title: str | _Decodable | None = None, index: int | None = None): ...
def move_sheet(self, sheet: Worksheet | str, offset: int = 0) -> None: ...
def remove(self, worksheet: Worksheet) -> None: ...
def remove_sheet(self, worksheet: Worksheet) -> None: ...
def create_chartsheet(self, title: str | None = None, index: int | None = None) -> Chartsheet: ...
def create_chartsheet(self, title: str | _Decodable | None = None, index: int | None = None) -> Chartsheet: ...
def get_sheet_by_name(self, name: str) -> Worksheet: ...
def __contains__(self, key: str) -> bool: ...
def index(self, worksheet: Worksheet) -> int: ...
Expand Down
4 changes: 2 additions & 2 deletions stubs/openpyxl/openpyxl/worksheet/_read_only.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class ReadOnlyWorksheet:
__getitem__ = Worksheet.__getitem__
__iter__ = Worksheet.__iter__
parent: Incomplete
title: Incomplete
title: str
sheet_state: str
def __init__(self, parent_workbook, title, worksheet_path, shared_strings) -> None: ...
def __init__(self, parent_workbook, title: str, worksheet_path, shared_strings) -> None: ...
def calculate_dimension(self, force: bool = False): ...
def reset_dimensions(self) -> None: ...
@property
Expand Down
3 changes: 2 additions & 1 deletion stubs/openpyxl/openpyxl/worksheet/_write_only.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from _typeshed import Incomplete

from openpyxl import _Decodable
from openpyxl.workbook.child import _WorkbookChild

class WriteOnlyWorksheet(_WorkbookChild):
Expand All @@ -17,7 +18,7 @@ class WriteOnlyWorksheet(_WorkbookChild):
print_area: Incomplete
@property
def sheet_view(self): ...
def __init__(self, parent, title) -> None: ...
def __init__(self, parent, title: str | _Decodable | None) -> None: ...
@property
def closed(self): ...
def close(self) -> None: ...
Expand Down
10 changes: 6 additions & 4 deletions stubs/openpyxl/openpyxl/worksheet/cell_range.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ class CellRange(Serialisable):
min_row: MinMax[int, Literal[False]]
max_col: MinMax[int, Literal[False]]
max_row: MinMax[int, Literal[False]]
title: Incomplete
# Could be None if the caller forgot to set title and range_string doesn't contain "!"
# but that's not intended and will lead to errors (ie: can't be None in __str__)
title: str

@overload
def __init__(
self,
range_string: Incomplete,
range_string: str | None,
min_col: Unused = None,
min_row: Unused = None,
max_col: Unused = None,
max_row: Unused = None,
title: Incomplete | None = None,
title: str | None = None,
) -> None: ...
@overload
def __init__(
Expand All @@ -33,7 +35,7 @@ class CellRange(Serialisable):
min_row: _ConvertibleToInt,
max_col: _ConvertibleToInt,
max_row: _ConvertibleToInt,
title: Incomplete | None = None,
title: str,
) -> None: ...
@property
def bounds(self): ...
Expand Down
4 changes: 2 additions & 2 deletions stubs/openpyxl/openpyxl/worksheet/print_settings.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ class PrintTitles(Strict):
title: String[Literal[False]]
def __init__(self, cols: ColRange | None = None, rows: RowRange | None = None, title: str = "") -> None: ...
@classmethod
def from_string(cls, value) -> Self: ...
def from_string(cls, value: str) -> Self: ...
def __eq__(self, other: object) -> bool: ...

class PrintArea(MultiCellRange):
title: str
@classmethod
def from_string(cls, value) -> Self: ...
def __init__(self, ranges=(), title: str = "") -> None: ...
def __init__(self, ranges=(), title: Unused = "") -> None: ...
def __eq__(self, other): ...
3 changes: 2 additions & 1 deletion stubs/openpyxl/openpyxl/worksheet/worksheet.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ from datetime import datetime
from typing import Any, overload
from typing_extensions import Final, Literal

from openpyxl import _Decodable
from openpyxl.cell.cell import Cell, _CellValue
from openpyxl.formatting.formatting import ConditionalFormattingList
from openpyxl.workbook.child import _WorkbookChild
Expand Down Expand Up @@ -66,7 +67,7 @@ class Worksheet(_WorkbookChild):
sheet_format: SheetFormatProperties
scenarios: ScenarioList

def __init__(self, parent: Workbook, title: str | None = None) -> None: ...
def __init__(self, parent: Workbook, title: str | _Decodable | None = None) -> None: ...
@property
def sheet_view(self) -> SheetView: ...
@property
Expand Down