Closed
Description
Code:
import plotly.graph_objects as go
fig = go.Figure(
data=go.Scatter(x=[1, 2, 3], y=[4, 5, 6], mode="lines+markers", name="My Line"),
layout=go.Layout(
title=go.layout.Title(text="My Line Chart"),
),
)
Expected highlighting / lack of errors (from v6.0.1):
Broken highlight with errors (from v6.1.0):
The error is:
Cannot access attribute "Title" for class "type[FigureWidget]"
Attribute "Title" is unknownPylance[reportAttributeAccessIssue]
The code of course still runs just fine. I'm using the latest version of VSCode and Pylance at time of writing.