Skip to content

Commit 9913e3c

Browse files
committed
Removed troublesome logging. Updated Makefile
1 parent 9078ed9 commit 9913e3c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ database:
6767
python policyengine_us_data/db/etl_snap.py
6868
python policyengine_us_data/db/etl_irs_soi.py
6969

70-
clean-database:
71-
rm *.db
72-
7370
data:
7471
python policyengine_us_data/utils/uprating.py
7572
python policyengine_us_data/datasets/acs/acs.py
@@ -84,6 +81,7 @@ data:
8481

8582
clean:
8683
rm -f policyengine_us_data/storage/*.h5
84+
rm -f policyengine_us_data/storage/*.db
8785
git clean -fX -- '*.csv'
8886
rm -rf policyengine_us_data/docs/_build
8987

policyengine_us_data/db/create_database_tables.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,6 @@ def calculate_definition_hash(mapper, connection, target: Stratum):
173173
fingerprint_text = "\n".join(constraint_strings)
174174
h = hashlib.sha256(fingerprint_text.encode("utf-8"))
175175
target.definition_hash = h.hexdigest()
176-
logger.info(
177-
f"Set definition_hash for Stratum to '{target.definition_hash}'"
178-
)
179176

180177

181178
def create_database(

0 commit comments

Comments
 (0)