From 0dffc593e225235ac434f540ab3a499c89f26851 Mon Sep 17 00:00:00 2001 From: Harrissou Sant-anna Date: Fri, 30 Dec 2022 08:35:23 +0100 Subject: [PATCH] Add missing blank line to allow parameters display in docs --- python/core/additions/metaenum.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/core/additions/metaenum.py b/python/core/additions/metaenum.py index 9ffb4278d3d..dac7b1b1c46 100644 --- a/python/core/additions/metaenum.py +++ b/python/core/additions/metaenum.py @@ -25,6 +25,7 @@ def metaEnumFromValue(enumValue, baseClass=None, raiseException=True): """ Returns the QMetaEnum for an enum value. The enum must have declared using the Q_ENUM macro + :param enumValue: the enum value :param baseClass: the enum base class. If not given, it will try to get it by using `enumValue.__class__.baseClass` :param raiseException: if False, no exception will be raised and None will be return in case of failure @@ -37,6 +38,7 @@ def metaEnumFromType(enumClass, baseClass=None, raiseException=True): """ Returns the QMetaEnum for an enum type. The enum must have declared using the Q_ENUM macro + :param enumClass: the enum class :param baseClass: the enum base class. If not given, it will try to get it by using `enumValue.__class__.baseClass` :param raiseException: if False, no exception will be raised and None will be return in case of failure