Skip to content

Commit

Permalink
comment out unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
ibastawisi authored Jul 10, 2021
1 parent 054534a commit df4de3f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { dispatch, getState, sentenceSlice } from "./store";
var model: tf.LayersModel;

var actions: string[] = [];
var franco: {[key:string]: string};
// var franco: {[key:string]: string};

var keypoints = [];
var sequence: number[][] = [];
Expand Down Expand Up @@ -67,10 +67,10 @@ export async function loadActions() {
// await loadFranco();
}

async function loadFranco() {
const response = await fetch("/franco.json");
franco = await response.json();
}
// async function loadFranco() {
// const response = await fetch("/franco.json");
// franco = await response.json();
// }

export async function loadVideoFeed(el: HTMLVideoElement) {
const hands = new Hands({
Expand Down

0 comments on commit df4de3f

Please sign in to comment.