Skip to content

Commit

Permalink
format python
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Jul 8, 2024
1 parent a9a9db2 commit 38e7314
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions e2e-pw/src/oss/specs/groups/nested-dynamic-groups.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,21 @@ test.beforeAll(async ({ fiftyoneLoader }) => {
order_id_1 = file1_name[-1]
order_id_2 = file2_name[-1]
s1 = fo.Sample(filepath=file1, group=group.element("1"), scene_key=scene_id, order_key=order_id_1)
s2 = fo.Sample(filepath=file2, group=group.element("2"), scene_key=scene_id, order_key=order_id_2)
s1 = fo.Sample(
filepath=file1,
group=group.element("1"),
scene_key=scene_id,
order_key=order_id_1,
)
s2 = fo.Sample(
filepath=file2,
group=group.element("2"),
scene_key=scene_id,
order_key=order_id_2,
)
samples.extend([s1, s2])
dataset.add_samples(samples)
`;
await fiftyoneLoader.executePythonCode(pythonCode);
Expand Down

0 comments on commit 38e7314

Please sign in to comment.