You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using doxygen 1.8.15 to document Python scripts.
In the init method of my class I would like to document my variable this way:
## @var Array of Hashes $__vms
# This is a complex structure having this details ... (long text)
__vms = None
...
After processed by doxypypy this was the result:
## @var Array of Hashes $__vms
# This is a complex structure having this details ... (long text)
## @var __vms
# @hideinitializer
# @Private
__vms = None
...
But the output of doxypypy should be without the second ##@var line.
Is there a walk around?
The text was updated successfully, but these errors were encountered:
I am using doxygen 1.8.15 to document Python scripts.
In the init method of my class I would like to document my variable this way:
## @var Array of Hashes $__vms
# This is a complex structure having this details ... (long text)
__vms = None
...
After processed by doxypypy this was the result:
## @var Array of Hashes $__vms
# This is a complex structure having this details ... (long text)
## @var __vms
# @hideinitializer
# @Private
__vms = None
...
But the output of doxypypy should be without the second ##@var line.
Is there a walk around?
The text was updated successfully, but these errors were encountered: