Skip to content

Commit b721680

Browse files
committed
Merge pull request plotly#139 from jbampton/pylint-pep8-fixes
Remove unused imports and fix import order. Remove extra whitespace.
1 parent 6b3df49 commit b721680

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

packages/dash-core-components/test/test_integration.py

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
# -*- coding: utf-8 -*-
2-
import dash_core_components as dcc
3-
import dash_html_components as html
4-
import dash_table_experiments as dt
2+
import base64
3+
from datetime import datetime
4+
import io
5+
import os
6+
import sys
7+
import time
8+
import pandas as pd
9+
510
import dash
611
from dash.dependencies import Input, Output, State
7-
8-
from datetime import datetime
12+
import dash_html_components as html
13+
import dash_core_components as dcc
14+
import dash_table_experiments as dt
915
from selenium import webdriver
1016
from selenium.webdriver.common.keys import Keys
17+
1118
try:
1219
from urlparse import urlparse
1320
except ImportError:
1421
from urllib.parse import urlparse
15-
import base64
16-
import importlib
17-
import io
18-
import multiprocessing
19-
import os
20-
import pandas as pd
21-
import percy
22-
import sys
23-
import time
24-
import unittest
2522

2623
from .IntegrationTests import IntegrationTests
27-
from .utils import assert_clean_console, invincible, wait_for, waiter
24+
from .utils import invincible, wait_for, waiter
2825

2926
# Download geckodriver: https://github.com/mozilla/geckodriver/releases
3027
# And add to path:
@@ -431,7 +428,7 @@ def update_pathname(n_clicks, current_pathname):
431428
# Check that pathname is updated through an a tag click via props
432429
self.driver.find_element_by_id('test-a').click()
433430
waiter(self.wait_for_element_by_id)
434-
431+
435432
self.snapshot('link -- /test/pathname/a')
436433
self.assertEqual(self.driver.find_element_by_id('test-pathname').text, '/test/pathname/a')
437434
self.assertEqual(self.driver.find_element_by_id('test-search').text, '')

0 commit comments

Comments
 (0)