Skip to content
Snippets Groups Projects
Select Git revision
  • 39b2c9b219a01b66bbf14a10573b4cae84e61040
  • main default protected
  • fix/missing-API-documentation-for-python-modules
  • fix/delete_mingw
  • feature/new_systems_methodology
  • fix/missing-api-documentation
  • feature/python_example_folder_update
  • beta_release protected
  • fix/revert-gitlab-config
  • fix/citationEcologicalAssessment
  • documentation/styleupdate
  • feature/lightMode
  • documentation/create_mission_xml
  • 28-empennage-design-update-documentation-according-to-workshop
  • documentation/fix-dot-equations
  • documentation/propulsion-design-module
  • documentation/gitlab-workflow
  • documentation/cost_estimation_update
  • documentation/mkdocs_python_update
  • documentation/tank_design_update
  • documentation/landing_gear_design_update
  • 0.5.0
22 results

getting-started.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    __init__.py 267 B
    """This is the new name of the qutil module which is just an alias to qutil for backwards compatibility reasons."""
    import sys
    import qutil
    
    from qutil import *
    
    __all__ = qutil.__all__
    __version__ = qutil.__version__
    sys.modules[__name__] = qutil
    
    del qutil
    del sys