Skip to content

Commit

Permalink
switched to global variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ngreenwald committed Aug 10, 2020
1 parent de77465 commit 996d538
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
9 changes: 2 additions & 7 deletions caliban_toolbox/settings.py
Expand Up @@ -27,12 +27,7 @@
from __future__ import print_function
from __future__ import division

from decouple import config

X_DIMENSION_LABELS = config('DIMENSION_LABELS', cast=list,
default=['fovs', 'stacks', 'crops', 'slices',
'rows', 'cols', 'channels'])
X_DIMENSION_LABELS = ['fovs', 'stacks', 'crops', 'slices', 'rows', 'cols', 'channels']

Y_DIMENSION_LABELS = config('DIMENSION_LABELS', cast=list,
default=['fovs', 'stacks', 'crops', 'slices',
'rows', 'cols', 'compartments'])
Y_DIMENSION_LABELS = ['fovs', 'stacks', 'crops', 'slices', 'rows', 'cols', 'compartments']
1 change: 0 additions & 1 deletion requirements.txt
Expand Up @@ -12,4 +12,3 @@ xarray==0.13.0
netCDF4==1.5.3
pathlib==1.0.1
deepcell-toolbox>=0.6.1
python-decouple==3.1

0 comments on commit 996d538

Please sign in to comment.