We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e3fbf6 commit 6cb91e4Copy full SHA for 6cb91e4
pkg-py/tests/playwright/chat/shiny_output/app.py
@@ -22,7 +22,7 @@ def map():
22
23
chat = Chat(id="chat")
24
25
-chat.ui(messages=[map_ui]) # type: ignore[reportArgumentType]
+chat.ui(messages=[map_ui])
26
27
with ui.hold() as df_1:
28
pyproject.toml
@@ -140,7 +140,8 @@ ignore = [
140
"A001", # Variable shadowing Python builtin, e.g. `input`
141
"A002", # Argument shadowing Python builtin, e.g. `id`
142
"A004", # Import shadowing Python builtin, e.g. `input`
143
- "E501"
+ "E501",
144
+ "PLC0415", # Import outside top-level
145
]
146
147
# Allow fix for all enabled rules (when `--fix`) is provided.
0 commit comments