Skip to content

Commit

Permalink
remove useless import
Browse files Browse the repository at this point in the history
  • Loading branch information
revoltek committed Nov 2, 2017
1 parent cc3c3f0 commit 294efe5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions losoto/operations/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import logging
from losoto.operations_lib import *
import numpy.ma

logging.debug('Loading PLOT module.')

Expand Down Expand Up @@ -79,7 +78,7 @@ def plot(Nplots, NColFig, figSize, cmesh, axesInPlot, axisInTable, xvals, yvals,
colorFlag = 'k'

vals = dataCube[Ntab][Ncol]
if numpy.ma.getmask(dataCube[Ntab][Ncol]).all():
if np.ma.getmask(dataCube[Ntab][Ncol]).all():
continue

# plotting
Expand Down

0 comments on commit 294efe5

Please sign in to comment.