add extra space to match python formatting

This commit is contained in:
Ethan Slattery 2020-01-02 18:42:25 -08:00
parent 7ef0de410b
commit c521ebeaf8

View File

@ -870,12 +870,10 @@ public:
for (const auto &argument : parser.mPositionalArguments) {
stream << argument.mNames.front() << " ";
}
stream << "\n";
stream << "\n\n";
if(!parser.mDescription.empty())
stream << parser.mDescription << "\n";
stream << "\n";
stream << parser.mDescription << "\n\n";
if (!parser.mPositionalArguments.empty())
stream << "Positional arguments:\n";