Skip to content

Commit

Permalink
fixup! *: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Feb 17, 2025
1 parent 83dfee3 commit cceda91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/dataset_input/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function tabular(
): Promise<void> {
for await (const [columns, i] of dataset
.map((row) => Set(Object.keys(row)))
.zip(Range(1)))
.zip(Range(1, Number.POSITIVE_INFINITY)))
if (!columns.isSuperset(wantedColumns))
throw new Error(
`row ${i} is missing columns ${wantedColumns.subtract(columns).join(", ")}`,
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/task_creation_form/TaskForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const modelURL = ref('')
const modelFiles = shallowRef(List<File>())
const formatSection = (section: FormSection, rawTask: any): any => {
const formatSection = (section: FormSection, rawTask: any): [string, Record<string, any>] => {
let fields = List(section.fields)
.map((field) => {
const content = rawTask[field.id]
Expand Down

0 comments on commit cceda91

Please sign in to comment.