Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/extrusion/project2d.py

    r24213 r24256  
    3131    vec2d = False
    3232    if value.ndim == 2 and value.shape[1] == 1:
    33         value = value.reshape(- 1, )
     33        value = value.reshape(-1, )
    3434        vec2d = True
    3535
     
    4545
    4646    if vec2d:
    47         projection_value = projection_value.reshape(- 1, )
     47        projection_value = projection_value.reshape(-1, )
    4848
    4949    return projection_value
Note: See TracChangeset for help on using the changeset viewer.