f5-common-python icon indicating copy to clipboard operation
f5-common-python copied to clipboard

sanity checks on update()

Open wojtek0806 opened this issue 7 years ago • 0 comments

Currently most of our sanity checks for parameters rely on **kwargs passed to update(), those sanity checks do not work when the user adds object attributes directly:

r1.description == 'SOMETHING'
r1.update()

vs

r1.update(description='SOMETHING')

```

wojtek0806 avatar Mar 17 '17 16:03 wojtek0806