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

Improve Type Checking Support #3425

Merged
merged 1 commit into from
May 2, 2022
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## TBD

### Fixed
- Improve support for type checking by bypassing lazy-loading when type checking.

## [5.7.0] - 2022-04-05

Expand Down
2 changes: 1 addition & 1 deletion packages/python/plotly/codegen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def perform_codegen():
root_datatype_imports.append(f"._deprecations.{dep_clas}")

optional_figure_widget_import = f"""
if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
try:
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion
Expand Down
3 changes: 2 additions & 1 deletion packages/python/plotly/codegen/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def build_from_imports_py(rel_modules=(), rel_classes=(), init_extra=""):

result = f"""\
import sys
if sys.version_info < (3, 7):
from typing import TYPE_CHECKING
if sys.version_info < (3, 7) or TYPE_CHECKING:
{imports_str}
else:
from _plotly_utils.importers import relative_import
Expand Down
3 changes: 2 additions & 1 deletion packages/python/plotly/plotly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
"""
from __future__ import absolute_import
import sys
from typing import TYPE_CHECKING
from _plotly_utils.importers import relative_import


if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
from plotly import (
graph_objs,
tools,
Expand Down
5 changes: 3 additions & 2 deletions packages/python/plotly/plotly/graph_objects/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys
from typing import TYPE_CHECKING

if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
from ..graph_objs import Waterfall
from ..graph_objs import Volume
from ..graph_objs import Violin
Expand Down Expand Up @@ -263,7 +264,7 @@
)


if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
try:
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion
Expand Down
5 changes: 3 additions & 2 deletions packages/python/plotly/plotly/graph_objs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys
from typing import TYPE_CHECKING

if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
from ._bar import Bar
from ._barpolar import Barpolar
from ._box import Box
Expand Down Expand Up @@ -263,7 +264,7 @@
)


if sys.version_info < (3, 7):
if sys.version_info < (3, 7) or TYPE_CHECKING:
try:
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion
Expand Down
8 changes: 4 additions & 4 deletions packages/python/plotly/plotly/graph_objs/_carpet.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ def aaxis(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -575,8 +575,8 @@ def baxis(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_choropleth.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_cone.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
8 changes: 4 additions & 4 deletions packages/python/plotly/plotly/graph_objs/_contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -534,8 +534,8 @@ def contours(self):
Sets the contour label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat.
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format.
operation
Sets the constraint operation. "=" keeps
regions equal to `value` "<" and "<=" keep
Expand Down
8 changes: 4 additions & 4 deletions packages/python/plotly/plotly/graph_objs/_contourcarpet.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -684,8 +684,8 @@ def contours(self):
Sets the contour label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat.
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format.
operation
Sets the constraint operation. "=" keeps
regions equal to `value` "<" and "<=" keep
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_densitymapbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_heatmapgl.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_histogram2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -574,8 +574,8 @@ def contours(self):
Sets the contour label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat.
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format.
operation
Sets the constraint operation. "=" keeps
regions equal to `value` "<" and "<=" keep
Expand Down
8 changes: 4 additions & 4 deletions packages/python/plotly/plotly/graph_objs/_indicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def delta(self):
Sets the value formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat.
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format.

Returns
-------
Expand Down Expand Up @@ -452,8 +452,8 @@ def number(self):
Sets the value formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat.
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format.

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_isosurface.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
16 changes: 8 additions & 8 deletions packages/python/plotly/plotly/graph_objs/_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -3981,8 +3981,8 @@ def xaxis(self):
Sets the hover text formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -4196,8 +4196,8 @@ def xaxis(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -4484,8 +4484,8 @@ def yaxis(self):
Sets the hover text formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down Expand Up @@ -4691,8 +4691,8 @@ def yaxis(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_mesh3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_parcats.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ def line(self):
only when this field is shown. Numbers are
formatted using d3-format's syntax
%{variable:d3-format}, for example "Price:
%{y:$.2f}". https://github.com/d3/d3-format/tre
e/v1.4.5#d3-format for details on the
%{y:$.2f}". https://github.com/d3/d3-
format/tree/v1.4.5#d3-format for details on the
formatting syntax. Dates are formatted using
d3-time-format's syntax %{variable|d3-time-
format}, for example "Day: %{2019-01-01|%A}".
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_parcoords.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def dimensions(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
8 changes: 4 additions & 4 deletions packages/python/plotly/plotly/graph_objs/_sankey.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ def link(self):
only when this field is shown. Numbers are
formatted using d3-format's syntax
%{variable:d3-format}, for example "Price:
%{y:$.2f}". https://github.com/d3/d3-format/tre
e/v1.4.5#d3-format for details on the
%{y:$.2f}". https://github.com/d3/d3-
format/tree/v1.4.5#d3-format for details on the
formatting syntax. Dates are formatted using
d3-time-format's syntax %{variable|d3-time-
format}, for example "Day: %{2019-01-01|%A}".
Expand Down Expand Up @@ -575,8 +575,8 @@ def node(self):
only when this field is shown. Numbers are
formatted using d3-format's syntax
%{variable:d3-format}, for example "Price:
%{y:$.2f}". https://github.com/d3/d3-format/tre
e/v1.4.5#d3-format for details on the
%{y:$.2f}". https://github.com/d3/d3-
format/tree/v1.4.5#d3-format for details on the
formatting syntax. Dates are formatted using
d3-time-format's syntax %{variable|d3-time-
format}, for example "Day: %{2019-01-01|%A}".
Expand Down
4 changes: 2 additions & 2 deletions packages/python/plotly/plotly/graph_objs/_streamtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ def colorbar(self):
Sets the tick label formatting rule using d3
formatting mini-languages which are very
similar to those in Python. For numbers, see: h
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-f
ormat. And for dates see:
ttps://github.com/d3/d3-format/tree/v1.4.5#d3-
format. And for dates see:
https://github.com/d3/d3-time-
format/tree/v2.2.3#locale_format. We add two
items to d3's date formatter: "%h" for half of
Expand Down
Loading