Skip to content

Commit 2251198

Browse files
committed
Change misspelled CB to BC
1 parent f9b9842 commit 2251198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/acquisition/rvdss/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def preprocess_table_columns(table):
9898

9999
table.columns = [re.sub(r"^at\b","atl ",t) for t in table.columns]
100100
table.columns = [re.sub("canada","can",t) for t in table.columns]
101-
table.columns = [re.sub("^cb$","bc",t) for t in table.columns]
101+
table.columns = [re.sub(r"\bcb\b","bc",t) for t in table.columns]
102102

103103
table.columns =[re.sub(r"h1n1 2009 |h1n12009|a_h1|ah1\b", "ah1n1pdm09", s)for s in table.columns]
104104
table.columns =[re.sub(r"a_uns", "auns", s)for s in table.columns]

0 commit comments

Comments
 (0)