ignore errors if TRX dans contains "name"
Browse files- queries/process_trx.py +1 -1
queries/process_trx.py
CHANGED
@@ -125,7 +125,7 @@ def process_trx_data(file_path: str):
|
|
125 |
def process_trx_with_bts_name(file_path: str):
|
126 |
|
127 |
df_gsm_trx = process_brute_trx_data(file_path=file_path).copy()
|
128 |
-
df_gsm_trx.drop(["name"], axis=1, inplace=True)
|
129 |
|
130 |
df_bts = process_small_bts_data(file_path=file_path)
|
131 |
|
|
|
125 |
def process_trx_with_bts_name(file_path: str):
|
126 |
|
127 |
df_gsm_trx = process_brute_trx_data(file_path=file_path).copy()
|
128 |
+
df_gsm_trx.drop(columns=["name"], axis=1, inplace=True, errors="ignore")
|
129 |
|
130 |
df_bts = process_small_bts_data(file_path=file_path)
|
131 |
|