diff --git a/README.md b/README.md index aa3a20d75..f6ee0c3cf 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Check other variables in `dags/ethereumetl_airflow/variables.py`. ### Updating package requirements Suggested package requirements for Composer are stored in `requirements_airflow.txt`. -You can update the Composer environment using the follow script: +You can update the Composer environment using the following script: ```bash ENVIRONMENT_NAME="ethereum-etl-0" LOCAL_REQUIREMENTS_PATH="$(mktemp)" diff --git a/dags/ethereumetl_airflow/build_export_dag.py b/dags/ethereumetl_airflow/build_export_dag.py index f92ca6ca7..433fea884 100644 --- a/dags/ethereumetl_airflow/build_export_dag.py +++ b/dags/ethereumetl_airflow/build_export_dag.py @@ -20,7 +20,7 @@ extract_field, ) -# When running on Composer, use suggested Data folder for temp storage +# When running on Composer, use the suggested Data folder for temp storage # This is a folder in the Composer Bucket, mounted locally using gcsfuse # Overcomes the 10GB ephemerol storage limit on workers (imposed by GKE Autopilot) # https://cloud.google.com/composer/docs/composer-2/cloud-storage diff --git a/dags/ethereumetl_airflow/parse/table_definition_reader.py b/dags/ethereumetl_airflow/parse/table_definition_reader.py index f91e2825c..b0dbcf0fe 100644 --- a/dags/ethereumetl_airflow/parse/table_definition_reader.py +++ b/dags/ethereumetl_airflow/parse/table_definition_reader.py @@ -67,7 +67,7 @@ def extract_table_name(file_path): return file_path.split('/')[-1].replace('.json', '').replace('.sql', '') -# Extracts dependencies and file type from file path and content +# Extracts dependencies and file type from the file path and content def extract_file_dependencies_and_type(file_path, file_content): if '.json' in file_path: filetype = TableDefinitionFileType.JSON diff --git a/dags/ethereumetl_airflow/parse/toposort.py b/dags/ethereumetl_airflow/parse/toposort.py index a6d946e62..924988fcc 100644 --- a/dags/ethereumetl_airflow/parse/toposort.py +++ b/dags/ethereumetl_airflow/parse/toposort.py @@ -58,7 +58,7 @@ def toposort(data): and whose values are a set of dependent items. Output is a list of sets in topological order. The first set consists of items with no dependences, each subsequent set consists of items that depend upon -items in the preceeding sets.""" +items in the preceding sets.""" # Special case empty input. if len(data) == 0: diff --git a/docker/webserver_config_local.py b/docker/webserver_config_local.py index 1f8d5a2d0..f15d8b801 100644 --- a/docker/webserver_config_local.py +++ b/docker/webserver_config_local.py @@ -55,7 +55,7 @@ # Will allow user self registration # AUTH_USER_REGISTRATION = True -# The recaptcha it's automatically enabled for user self registration is active and the keys are necessary +# The recaptcha is automatically enabled for user self registration is active and the keys are necessary # RECAPTCHA_PRIVATE_KEY = PRIVATE_KEY # RECAPTCHA_PUBLIC_KEY = PUBLIC_KEY