Merge pull request #1577 from j9ac9k/cleanup-1573

Remove duplicate import and remove whitespace
This commit is contained in:
Kyle Sunden 2021-02-14 21:36:31 -06:00 committed by GitHub
commit a5a41cf8eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -395,7 +395,7 @@ def plot(*args, **kargs):
Accepts a *title* argument to set the title of the window. Accepts a *title* argument to set the title of the window.
All other arguments are used to plot data. (see :func:`PlotItem.plot() <pyqtgraph.PlotItem.plot>`) All other arguments are used to plot data. (see :func:`PlotItem.plot() <pyqtgraph.PlotItem.plot>`)
""" """
mkQApp() mkQApp()
pwArgList = ['title', 'labels', 'name', 'left', 'right', 'top', 'bottom', 'background'] pwArgList = ['title', 'labels', 'name', 'left', 'right', 'top', 'bottom', 'background']
pwArgs = {} pwArgs = {}
dataArgs = {} dataArgs = {}

View File

@ -1129,7 +1129,7 @@ def makeARGB(data, lut=None, levels=None, scale=None, useRGBA=False, output=None
raise Exception('levels argument is required for float input types') raise Exception('levels argument is required for float input types')
if not isinstance(levels, xp.ndarray): if not isinstance(levels, xp.ndarray):
levels = xp.array(levels) levels = xp.array(levels)
levels = levels.astype(xp.float32) levels = levels.astype(xp.float64)
if levels.ndim == 1: if levels.ndim == 1:
if levels.shape[0] != 2: if levels.shape[0] != 2:
raise Exception('levels argument must have length 2') raise Exception('levels argument must have length 2')

View File

@ -9,7 +9,6 @@ from .ScatterPlotItem import ScatterPlotItem
from .. import functions as fn from .. import functions as fn
from .. import debug as debug from .. import debug as debug
from .. import getConfigOption from .. import getConfigOption
import warnings
class PlotDataItem(GraphicsObject): class PlotDataItem(GraphicsObject):