-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit 4a1a814
fix: corrections based on code review from @emilykl
- Run `ruff format --check .` instead of `ruff format .` in Circle CI.
- Use `base_type is list` instead of `base_type == list`.
- Remove commented-out lines of code.
- Remove unnecessary parentheses around some strings.
- Be more consistent about (re-)naming test functions that had duplicated names.
- Use `noqa: F401` to suppress `ruff check` complaint about unused import.1 parent eb95abc commit 4a1a814
File tree
8 files changed
+12
-19
lines changed- .circleci
- codegen
- plotly
- figure_factory
- io
- tests
- test_core
- test_graph_objs
- test_offline
- test_io
- test_plotly_utils/validators
8 files changed
+12
-19
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
156 | 156 |
| |
157 | 157 |
| |
158 | 158 |
| |
159 | - | ||
159 | + | ||
160 | 160 |
| |
161 | 161 |
| |
162 | 162 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
136 | 136 |
| |
137 | 137 |
| |
138 | 138 |
| |
139 | - | ||
139 | + | ||
140 | 140 |
| |
141 | 141 |
| |
142 | 142 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
219 | 219 |
| |
220 | 220 |
| |
221 | 221 |
| |
222 | - | ||
223 | - | ||
224 | - | ||
225 | - | ||
226 | - | ||
227 | 222 |
| |
228 | 223 |
| |
229 | 224 |
| |
| |||
439 | 434 |
| |
440 | 435 |
| |
441 | 436 |
| |
442 | - | ||
437 | + | ||
443 | 438 |
| |
444 | 439 |
| |
445 | 440 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
604 | 604 |
| |
605 | 605 |
| |
606 | 606 |
| |
607 | - | ||
607 | + | ||
608 | 608 |
| |
609 | 609 |
| |
610 | 610 |
| |
|
Lines changed: 4 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
80 | 80 |
| |
81 | 81 |
| |
82 | 82 |
| |
83 | - | ||
83 | + | ||
84 | 84 |
| |
85 | 85 |
| |
86 | 86 |
| |
87 | - | ||
87 | + | ||
88 | 88 |
| |
89 | 89 |
| |
90 | 90 |
| |
91 | - | ||
91 | + | ||
92 | 92 |
| |
93 | 93 |
| |
94 | 94 |
| |
95 | - | ||
95 | + | ||
96 | 96 |
| |
97 | 97 |
| |
98 | 98 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
239 | 239 |
| |
240 | 240 |
| |
241 | 241 |
| |
242 | - | ||
242 | + | ||
243 | 243 |
| |
244 | 244 |
| |
245 | 245 |
| |
| |||
259 | 259 |
| |
260 | 260 |
| |
261 | 261 |
| |
262 | - | ||
262 | + | ||
263 | 263 |
| |
264 | 264 |
| |
265 | 265 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
386 | 386 |
| |
387 | 387 |
| |
388 | 388 |
| |
389 | - | ||
390 | - | ||
391 | - | ||
389 | + | ||
392 | 390 |
| |
393 | 391 |
| |
394 | 392 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
85 | 85 |
| |
86 | 86 |
| |
87 | 87 |
| |
88 | - | ||
88 | + | ||
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
|
0 commit comments