exchange col_idx and row_idx for field style

This commit is contained in:
iLLiCiTiT 2020-01-16 17:16:02 +01:00
parent b3f4673248
commit 16bc4dcc60

View file

@ -213,7 +213,7 @@ class BaseObj:
result = re.search(field_regex, key)
if result:
col_idx, row_idx = get_indexes_from_regex_match(
row_idx, col_idx = get_indexes_from_regex_match(
result, True
)
if self.col_idx == col_idx and self.row_idx == row_idx: