Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
philopon committed Mar 11, 2019
1 parent 5d6c9d9 commit b1ea3e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mordred/mopac/calculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
import os
import sys
import time
import subprocess
import threading
try:
from tempfile import TemporaryDirectory
except ImportError:
from backports.tempfile import TemporaryDirectory

import subprocess

from rdkit.Chem import rdForceFieldHelpers

from .parser import parse_output, get_dipole_from_arc
from .generate import generate_mopac_input

try:
from tempfile import TemporaryDirectory
except ImportError:
from backports.tempfile import TemporaryDirectory


def get_mopac_path():
if sys.platform.startswith("win"):
Expand Down

0 comments on commit b1ea3e0

Please sign in to comment.