Skip to content

Commit e5cff3e

Browse files
committed
minor polish
1 parent 0006ed3 commit e5cff3e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55

66
def main():
7+
"""Move data between sources."""
78
rows = bqc.fetch_rows(analytics_query)
89
updated = dbc.insert_rows(rows, replace=True)
910
print(updated)

src/queries/read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def read_query(path):
5-
"""Read contents of file."""
5+
"""Read contents of a .sql file."""
66
file = open(path, 'r')
77
query = file.read()
88
file.close()

src/sources/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Base Client."""
1+
"""Base Data Client."""
22
import logging
33
from sqlalchemy import Table
44

0 commit comments

Comments
 (0)