legend1234 commited on
Commit
0c30a1d
·
1 Parent(s): 551812a

Fix import order

Browse files
DiverseSelector/test/test_DiverseSelector.py CHANGED
@@ -32,6 +32,6 @@ import sys
32
  # import DiverseSelector
33
 
34
 
35
- def test_DiverseSelector_imported():
36
  """Sample test, will always pass so long as import statement worked."""
37
  assert "DiverseSelector" in sys.modules
 
32
  # import DiverseSelector
33
 
34
 
35
+ def test_diverseselector_imported():
36
  """Sample test, will always pass so long as import statement worked."""
37
  assert "DiverseSelector" in sys.modules
doc/getting_started.rst CHANGED
@@ -1,4 +1,5 @@
1
  Getting Started
2
  ===============
3
 
4
- This page details how to get started with DiverseSelector.
 
 
1
  Getting Started
2
  ===============
3
 
4
+ This page details how to get started with DiverseSelector.
5
+
setup.py CHANGED
@@ -23,8 +23,8 @@
23
  """Setup and Install Script."""
24
 
25
  import sys
26
- from setuptools import find_packages, setup
27
 
 
28
  import versioneer
29
 
30
  short_description = "Molecule selection with maximum diversity".split("\n")[0]
 
23
  """Setup and Install Script."""
24
 
25
  import sys
 
26
 
27
+ from setuptools import find_packages, setup
28
  import versioneer
29
 
30
  short_description = "Molecule selection with maximum diversity".split("\n")[0]
tox.ini CHANGED
@@ -127,7 +127,7 @@ exclude =
127
  *.egg-info,
128
  .cache,
129
  .eggs,
130
- */*/_version.py,
131
 
132
  max-line-length = 100
133
  import-order-style = google
 
127
  *.egg-info,
128
  .cache,
129
  .eggs,
130
+ _version.py,
131
 
132
  max-line-length = 100
133
  import-order-style = google