Grzegorz
Grzegorz
Hi, I have a question: at what point does PyRx decide on the choice of a specific python interpreter? During installation or when loading into AutoCAD? I would like to...
I loaded [this file](https://github.com/CEXT-Dan/PyRx/blob/main/PySamples/testpylisp.py) into Autocad and Zwcad, everything is ok in Autocad, no function was registered in Zwcad: `error: undefined function - nil`
When I define methods `('__or__', '__and__', '__xor__', '__ror__', '__rand__', '__rxor__', '__invert__')` directly in the class inheriting from `enum.Flag`, these methods are "added" (mro) to the members, however, if the method...
`getActiveLayoutName` method returns the layout name for the current document, but `setCurrentLayout` sets the active layout for the given db. ```py import traceback from pyrx_imp import Db def PyRxCmd_doit1(): try:...
When you close one document, the `PYLOAD` and `PYRELOAD` commands disappear. Example steps: 1. Open the document - _the `PYLOAD` command works_ 2. Close the document 3. Open new document...
**Describe the bug** I have defined a block with a multi-line attribute. After inserting a reference to the block and calling ``.add_auto_attribs()`` the multi-line attributes change to single-line. **To Reproduce**...
### Initial Checks - [X] I have searched Google & GitHub for similar requests and couldn't find anything - [X] I have read and followed [the docs](https://docs.pydantic.dev) and still think...