diff options
Diffstat (limited to 'src/Lang/Python/PythonParser.ts')
| -rw-r--r-- | src/Lang/Python/PythonParser.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Lang/Python/PythonParser.ts b/src/Lang/Python/PythonParser.ts index 74f1bef..261f420 100644 --- a/src/Lang/Python/PythonParser.ts +++ b/src/Lang/Python/PythonParser.ts @@ -18,7 +18,7 @@ export default class CppParser implements ICodeParser { this.activeEditor = activeEditor; this.activeSelection = activeEditor.selection.active; const params = this.getParams(this.getLogicalLine()); - return new PythonDocGen(); + return new PythonDocGen(params); } private getLogicalLine(): string { |