Skip to content

Commit

Permalink
Update denops/skkeleton/sources/deno_kv.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Hibiki <4513echo@gmail.com>
  • Loading branch information
Shougo and 4513ECHO authored Sep 15, 2024
1 parent 2d559e8 commit b77e416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denops/skkeleton/sources/deno_kv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class Dictionary implements BaseDictionary {

private async loadMsgpack() {
const data = await Deno.readFile(this.#path);
const jisyo = (msgpackDecode(data) as unknown) as Jisyo;
const jisyo = msgpackDecode(data) as unknown as Jisyo;
const validator = new jsonschema.Validator();
const result = validator.validate(jisyo, jisyoschema);
if (!result.valid) {
Expand Down

0 comments on commit b77e416

Please sign in to comment.