Skip to content

Commit

Permalink
Fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudon committed Mar 11, 2024
1 parent e11c61c commit 53946da
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pygenstability/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Import main functions."""

from pygenstability.constructors import *
from pygenstability.io import load_results
from pygenstability.io import save_results
Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command line interface."""

import pickle
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
:math:`\boldsymbol{1}` is the vector of ones, and we denote the diagonal degree matrix by
:math:`D=\mathrm{diag}(d)`.
"""

import logging
import sys

Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/contrib/sankey.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sankey diagram plots."""

import numpy as np # pragma: no cover
import plotly.graph_objects as go # pragma: no cover
from plotly.offline import plot # pragma: no cover
Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/io.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""I/O functions."""

import pickle


Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/optimal_scales.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Detect optimal scales from a scale scan."""

import numpy as np
import pandas as pd
from numpy.lib.stride_tricks import as_strided
Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/plotting.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Plotting functions."""

import logging
import os

Expand Down
1 change: 1 addition & 0 deletions src/pygenstability/pygenstability.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Markov Stability setting, and can be parametrised via built-in constructors, or specified by
the user via the constructor module.
"""

import itertools
import logging
import multiprocessing
Expand Down

0 comments on commit 53946da

Please sign in to comment.