Skip to content

Commit

Permalink
Update ComplexFilterGenerator to Generate Class Name in Default Tags (
Browse files Browse the repository at this point in the history
…#1029)

- one liner to make the class name dynamically generated into default tags for python bindings
  • Loading branch information
nyoungbq authored Aug 22, 2023
1 parent b4eb5b2 commit f93e3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/ComplexFilterGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ void GenerateSourceFile(AbstractFilter* filter, const QString& outputDir, const
QString humanName = filter->getHumanLabel();
// QString pluginName = filter->getCompiledLibraryName();

QString defaultTags = QString("\"%1\", \"%2\"").arg(filter->getGroupName(), filter->getSubGroupName());
QString defaultTags = QString("className(), \"%1\", \"%2\"").arg(filter->getGroupName(), filter->getSubGroupName());
if(filter->getSubGroupName() == SIMPL::FilterSubGroups::InputFilters)
{
defaultTags = defaultTags + ", \"Read\", \"Import\"";
Expand Down

0 comments on commit f93e3de

Please sign in to comment.