Skip to content

Commit

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

private loadMsgpack(data: Uint8Array) {
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 56be7ef

Please sign in to comment.