From 764078562a58a77350b696eb5c172a7f77427a73 Mon Sep 17 00:00:00 2001 From: Nicholas Kalar Date: Thu, 6 Nov 2025 18:37:22 -0500 Subject: [PATCH] Fixed typos --- .gitignore | 3 ++- README.md | 2 +- src/load.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ef0eec1..f637a82 100644 --- a/.gitignore +++ b/.gitignore @@ -194,4 +194,5 @@ cython_debug/ .cursorindexingignore .DS_Store -output/* \ No newline at end of file +output/* +.vscode/settings.json diff --git a/README.md b/README.md index a3f17b9..d058092 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ match the column names of the database schema. ## load.py Takes the JSON file created by transform.py and loads the data into a PostgreSQL database for -retreival later. +retrieval later. ## orchestrator.py Handles the orchestration of each program being ran one after the other. Ensures each diff --git a/src/load.py b/src/load.py index c5ed1aa..a7a28b8 100644 --- a/src/load.py +++ b/src/load.py @@ -50,7 +50,7 @@ def load_transformed_books(cursor, books): `collection_item` SQL table ''' for book in books['books']: - # This for i in range statment simulates a library buying multiple copies of a book. + # This for i in range statement simulates a library buying multiple copies of a book. try: for i in range(random.randrange(1, 10)): cursor.execute(sql_statements.collection_insert_statement(book))