Skip to content

Commit

Permalink
Merge pull request #45 from marscher/abs_import
Browse files Browse the repository at this point in the history
use absolute imports
  • Loading branch information
marscher authored Jun 24, 2018
2 parents d215cff + 1bd98de commit 3f3207c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions thermotools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

from ._version import get_versions

__author__ = "Christoph Wehmeyer, Fabian Paul, Antonia Mey, Martin Scherer"
__author__ = "Christoph Wehmeyer, Fabian Paul, Antonia Mey, Martin K. Scherer"
__copyright__ = "Copyright 2015, 2016 Computational Molecular Biology Group, FU-Berlin"
__credits__ = [
"Christoph Wehmeyer",
"Fabian Paul",
"Antonia Mey",
"Benjamin Trendelkamp-Schroer",
"Martin Scherer",
"Martin K. Scherer",
"Hao Wu",
"John D. Chodera",
"Frank Noe"],
Expand Down
7 changes: 4 additions & 3 deletions thermotools/cset.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
r"""
This module provides functions to deal with connected sets.
"""
from __future__ import absolute_import

__all__ = [
'compute_csets_TRAM',
Expand All @@ -28,9 +29,9 @@
import scipy as _sp
import scipy.sparse as _sps
import msmtools as _msmtools
import bar as _bar
import util as _util
import collections as _collections
import thermotools.bar as _bar
import thermotools.util as _util


def compute_csets_TRAM(
connectivity, state_counts, count_matrices, equilibrium_state_counts=None,
Expand Down

0 comments on commit 3f3207c

Please sign in to comment.