chore: sider, linting issues
This commit is contained in:
parent
18ba79222c
commit
a8b3effa82
3 changed files with 3 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ frappe.ui.form.on('Server Script', {
|
|||
|
||||
if (!frm.is_new()) {
|
||||
frm.add_custom_button(__('Compare Versions'), () => {
|
||||
let diff = new frappe.ui.DiffView("Server Script", "script", frm.doc.name);
|
||||
new frappe.ui.DiffView("Server Script", "script", frm.doc.name);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ frappe.ui.form.on('Client Script', {
|
|||
|
||||
if (!frm.is_new()) {
|
||||
frm.add_custom_button(__('Compare Versions'), () => {
|
||||
let diff = new frappe.ui.DiffView("Client Script", "script", frm.doc.name);
|
||||
new frappe.ui.DiffView("Client Script", "script", frm.doc.name);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import json
|
||||
from difflib import unified_diff
|
||||
from typing import List, Tuple
|
||||
from typing import List
|
||||
|
||||
import frappe
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue