mirror of
https://github.com/talwrii/plugin-repl.git
synced 2026-07-22 11:40:27 +00:00
Fix posisbly null warning
This commit is contained in:
parent
a4986d02e6
commit
a1b7bc39f5
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ export async function getTp(app: PrivateApp) {
|
|||
|
||||
const running_config = p.templater.create_running_config(
|
||||
"plugin-repl",
|
||||
app.vault.getFileByPath(path),
|
||||
app.vault.getFileByPath(path)!,
|
||||
1
|
||||
);
|
||||
const functions_object = await p.templater.functions_generator.generate_object(
|
||||
|
|
|
|||
Loading…
Reference in a new issue