Skip to content

Commit 6101cdc

Browse files
committed
linint etc
1 parent 8af3b4a commit 6101cdc

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ cython_debug/
182182
.abstra/
183183

184184
# Visual Studio Code
185-
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
185+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186186
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187-
# and can be added to the global gitignore or merged into this file. However, if you prefer,
187+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
188188
# you could uncomment the following to ignore the entire vscode folder
189189
# .vscode/
190190

stubs-package/xarray-stubs/__init__.pyi

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
"""Partial type stubs for xarray - adds plotly accessor to DataArray."""
22

3-
from typing import Any
3+
# Re-export everything from xarray
4+
from xarray import * # noqa: F403
45

56
from xarray_plotly.accessor import DataArrayPlotlyAccessor
67

7-
# Re-export everything from xarray
8-
from xarray import *
9-
108
# Augment DataArray with the plotly accessor
119
class DataArray(DataArray):
1210
@property

0 commit comments

Comments
 (0)