From 802e09be4f4a3890012de0c80e6bcbc8de18ec9d Mon Sep 17 00:00:00 2001 From: "f.basile" Date: Mon, 26 Oct 2020 15:11:06 +0100 Subject: [PATCH] python/damask/_geom.py exceeds line length limit (maximum line length 143 > 132) --- python/damask/_geom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/damask/_geom.py b/python/damask/_geom.py index 31a98e32e..914c6bafa 100644 --- a/python/damask/_geom.py +++ b/python/damask/_geom.py @@ -884,7 +884,7 @@ class Geom: else: base_nodes = np.concatenate((base_nodes,np.logical_and(np.take(base_nodes,[0],d),False)),d) nodes['{}'.format(d_s)]= np.argwhere(base_nodes.flatten(order='F'))[:,0] - index['{}'.format(d_s)]= np.isin( nodes['{}'.format(d_s)] , nodes_PBC['{}'.format(d_s)] , assume_unique=True, invert=True ) + index['{}'.format(d_s)]=np.isin(nodes['{}'.format(d_s)],nodes_PBC['{}'.format(d_s)],assume_unique=True,invert=True) for p in nodes['0'][index['0']]: q = vtk.vtkQuad()