Add missing semicolon

This commit is contained in:
jakergrossman 2021-11-16 13:21:51 -06:00
parent 07799da26e
commit e3e9a218df

View File

@ -8,7 +8,7 @@ class AccessAction extends vscode.TreeItem {
public readonly label: string, public readonly label: string,
public readonly command: vscode.Command public readonly command: vscode.Command
) { ) {
super(label, vscode.TreeItemCollapsibleState.None) super(label, vscode.TreeItemCollapsibleState.None);
} }
}; };