blob: 4b90f86ae91e762169b0f076431a3651b3b5f13d (
plain)
1
2
3
4
5
6
7
8
|
import { Range } from "vscode";
import { IDocGen } from "../../Common/IDocGen";
export class PythonDocGen implements IDocGen {
public GenerateDoc(rangeToReplace: Range) {
throw new Error("Method not implemented.");
}
}
|