Skip to content

Commit 2d02b2a

Browse files
committed
[NRL-1860] Create nft seed data file in dist directory
1 parent 4335f9e commit 2d02b2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/seed_nft_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ def _populate_seed_table(
230230
f"Created {doc_ref_counter} pointers in {timedelta.total_seconds(end_time - start_time)} seconds."
231231
)
232232

233-
with open("./seed-nft-pointers.csv", "w") as f:
233+
with open("./dist/seed-nft-pointers.csv", "w") as f:
234234
writer = csv.writer(f)
235235
writer.writerow(["pointer_id", "pointer_type", "custodian", "nhs_number"])
236236
writer.writerows(pointer_data)
237-
print(f"Pointer data saved to ./seed-nft-pointers.csv") # noqa
237+
print(f"Pointer data saved to ./dist/seed-nft-pointers.csv") # noqa
238238

239239

240240
def _set_up_cyclical_iterator(dists: dict[str, int]) -> Iterator[str]:

0 commit comments

Comments
 (0)