Context
PR #502 resulted in METATRAITS_DIR being defined twice in constants.py:
- Line 33:
METATRAITS_DIR = TRANSFORM_UTILS_DIR / METATRAITS
- Line 576:
METATRAITS_DIR = TRANSFORM_UTILS_DIR / METATRAITS
METATRAITS_MAPPINGS_DIR is derived from the first definition (line 34). Having two definitions means future edits could update one but miss the other.
Action
- Remove the duplicate definition at line 576
- Keep
METATRAITS_RAW_DIR (line 577) near the other raw dir definitions but derive it from the single METATRAITS_DIR
Ref: #502
Context
PR #502 resulted in
METATRAITS_DIRbeing defined twice inconstants.py:METATRAITS_DIR = TRANSFORM_UTILS_DIR / METATRAITSMETATRAITS_DIR = TRANSFORM_UTILS_DIR / METATRAITSMETATRAITS_MAPPINGS_DIRis derived from the first definition (line 34). Having two definitions means future edits could update one but miss the other.Action
METATRAITS_RAW_DIR(line 577) near the other raw dir definitions but derive it from the singleMETATRAITS_DIRRef: #502