Skip to content

Commit

Permalink
small cleanup changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer Jones committed Dec 13, 2019
1 parent a96f11f commit 2e851b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xlayers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
del get_versions

__all__ = ['core']
from .core import *
from .core import layers_numpy
2 changes: 1 addition & 1 deletion xlayers/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _reshape_inputs(*args):
return args_2d


def _reshape_outputs(*args, shape=None):
def _reshape_outputs(*args, shape = None):
if len(shape) == 1:
target_shape = (1,)
else:
Expand Down

0 comments on commit 2e851b2

Please sign in to comment.