Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Allow instantiation of more CTK objects in Python #1078

Merged
merged 1 commit into from
Apr 5, 2023

Commits on Apr 5, 2023

  1. ENH: Allow instantiation of more CTK objects in Python

    CTK objects that only had default constructor (no Object* parameter) were not possible to instantiate in Python:
    
    >>> a=ctk.ctkErrorLogLevel()
    Traceback (most recent call last):
      File "<console>", line 1, in <module>
    ValueError: No constructors available for ctkErrorLogLevel
    
    The issue is fixed by passing arguments of the superclass constructor.
    lassoan committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    d743827 View commit details
    Browse the repository at this point in the history