Skip to content

Commit

Permalink
Apply isort to imports
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Nov 16, 2020
1 parent 359461d commit cf24f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions keras_lmu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
"""KerasLMU provides a package for deep learning with Legendre Memory Units."""

from .layers import (
LMUCell,
LMUFFT,
LMU,
)

from .layers import LMU, LMUFFT, LMUCell
from .version import version as __version__

__copyright__ = "2019-2020, Applied Brain Research"
Expand Down
2 changes: 1 addition & 1 deletion keras_lmu/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"""

import numpy as np
from scipy.signal import cont2discrete
import tensorflow as tf
from scipy.signal import cont2discrete
from tensorflow.python.keras.layers.recurrent import DropoutRNNCellMixin


Expand Down

0 comments on commit cf24f8d

Please sign in to comment.