Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zefhemel committed Sep 12, 2024
1 parent 4c87d3e commit 9d43c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/space_lua/eval.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class LuaFunction implements ILuaFunction {
constructor(readonly body: LuaFunctionBody) {
}

call(...args: any[]): Promise<LuaMultiRes> | LuaMultiRes {
call(..._args: any[]): Promise<LuaMultiRes> | LuaMultiRes {
throw new Error("Not yet implemented funciton call");
}
}
Expand Down Expand Up @@ -84,7 +84,7 @@ export class LuaTable {
}
}

function luaSet(obj: any, key: any, value: any) {
export function luaSet(obj: any, key: any, value: any) {
if (obj instanceof LuaTable) {
obj.set(key, value);
} else {
Expand Down

0 comments on commit 9d43c9a

Please sign in to comment.