Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[settings]
profile = black
line_length = 88
6 changes: 3 additions & 3 deletions doptools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.

from .chem import *
from .cli import *
from .optimizer import *
from .chem import * # noqa: F401,F403
from .cli import * # noqa: F401,F403
from .optimizer import * # noqa: F401,F403
6 changes: 3 additions & 3 deletions doptools/chem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.

from .chem_features import *
from .coloratom import *
from .solvents import *
from .chem_features import * # noqa: F401,F403
from .coloratom import * # noqa: F401,F403
from .solvents import * # noqa: F401,F403
Loading