unihd-cag / skillbridge

A seamless python to Cadence Virtuoso Skill interface
https://unihd-cag.github.io/skillbridge/
GNU Lesser General Public License v3.0
185 stars 39 forks source link

Fix internal close command collision #258

Closed nielsbuwen closed 7 months ago

nielsbuwen commented 7 months ago

Internally we use the string close to close the connection of a workspace with the server. Unfortunately this is also a valid python request.

This PR changes the internal command to $close. This is neither valid Python code nor valid SKILL code so it cannot be sent by accident.

Closes #257