hariqueen commited on
Commit
6514f8b
·
verified ·
1 Parent(s): 00169cd

Update processors/rental_processor.py

Browse files
Files changed (1) hide show
  1. processors/rental_processor.py +1 -4
processors/rental_processor.py CHANGED
@@ -1,9 +1,6 @@
1
- """
2
- 데이터 전처리 및 가공 모듈
3
- """
4
  import pandas as pd
5
  from typing import Dict, List, Any, Tuple
6
- import mapping_utils
7
 
8
 
9
  def load_and_preprocess_data(input_file: str, config: Dict[str, Any], mapping_dict: Dict[str, Dict[str, str]]) -> Tuple[pd.DataFrame, pd.DataFrame]:
 
 
 
 
1
  import pandas as pd
2
  from typing import Dict, List, Any, Tuple
3
+ from mappers import mapping_utils
4
 
5
 
6
  def load_and_preprocess_data(input_file: str, config: Dict[str, Any], mapping_dict: Dict[str, Dict[str, str]]) -> Tuple[pd.DataFrame, pd.DataFrame]: