Skip to content

Commit 1745e53

Browse files
committed
trying again
1 parent f9016e1 commit 1745e53

File tree

4 files changed

+31
-36
lines changed

4 files changed

+31
-36
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
name: Check handwritten code with ruff
157157
command: |
158158
source .venv/bin/activate
159-
ruff check .
159+
ruff format .
160160
161161
test_core_py:
162162
parameters:
@@ -431,6 +431,7 @@ jobs:
431431
- store_artifacts:
432432
path: doc/build
433433
destination: doc/build
434+
434435
workflows:
435436
code_formatting:
436437
jobs:
@@ -441,7 +442,6 @@ workflows:
441442
release_build:
442443
jobs:
443444
- full_build
444-
445445
build:
446446
jobs:
447447
- test_core_py:

plotly/express/_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ def process_args_into_dataframe(
12481248
else args.get(field_name)
12491249
)
12501250
# argument not specified, continue
1251-
if argument_list is None or (isinstance(argument_list, list) and len(argument_list) == 1 and argument_list[0] is None):
1251+
if argument_list is None or argument_list is [None]:
12521252
continue
12531253
# Argument name: field_name if the argument is not a list
12541254
# Else we give names like ["hover_data_0, hover_data_1"] etc.

pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dev_optional = [
6767
"pdfrw",
6868
"pillow",
6969
"plotly-geo",
70-
"polars",
70+
"polars[timezone]",
7171
"pyarrow",
7272
"pyshp",
7373
"pytz",
@@ -90,11 +90,6 @@ markers = [
9090
"matplotlib: mark a test as matplotlib"
9191
]
9292

93-
[tool.ruff]
94-
exclude = [
95-
"plotly/graph_objs"
96-
]
97-
9893
[tool.setuptools.packages.find]
9994
where = ["."]
10095
include = ["plotly*", "_plotly*"]

uv.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)