Skip to content

Commit e4e39d2

Browse files
committed
Fix linting errors
1 parent 7618b3f commit e4e39d2

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

docs/demos/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
23
import dash
34
import dash_bootstrap_components as dbc
45

docs/demos/theme_explorer/__init__.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,5 @@ def open_toast(_):
113113
return True
114114

115115

116-
@app.callback(
117-
Output("gallery_checklist1", "value"),
118-
Output("gallery_radio1", "value"),
119-
Output("gallery_checklist2", "value"),
120-
Output("gallery_radio2", "value"),
121-
Input("gallery_checklist1", "value"),
122-
)
123-
def update_checklist(value):
124-
# This is a dummy callback so checkboxes change color when theme is switched
125-
return value, 0, value, 0
126-
127-
128116
if __name__ == "__main__":
129117
app.run_server(debug=True)

0 commit comments

Comments
 (0)