Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 970c682

Browse files
committed
lint
1 parent 55f45d2 commit 970c682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ def on_click(n_clicks):
11931193
def check_plotlyjs(self):
11941194
# find plotly.js files in the dist folder, check that there's only one
11951195
all_dist = os.listdir(dcc.__path__[0])
1196-
js_re = '^plotly-(.*)\.min\.js$'
1196+
js_re = r'^plotly-(.*)\.min\.js$'
11971197
plotlyjs_dist = [fn for fn in all_dist if re.match(js_re, fn)]
11981198

11991199
self.assertEqual(len(plotlyjs_dist), 1)

0 commit comments

Comments
 (0)