DSD-DBS / py-capellambse

A Python 3 headless implementation of the Capella modeling tool.
https://dsd-dbs.github.io/py-capellambse/
Apache License 2.0
53 stars 11 forks source link

Refactor sync modify #393

Closed huyenngn closed 8 months ago

huyenngn commented 8 months ago

sync set should be called sync modify. it's weird that it has to be:

- parent: !uuid blahblah
  modify:
    description: "hey"

for parent, but for find it's:

- find:
    name: blah
  set:
    description: "hey"

even though they both do the same thing.

it should instead be:

- find:
    name: blah
  modify:
    description: "hey"