Skip to content

Commit

Permalink
Fixed wrong module name
Browse files Browse the repository at this point in the history
  • Loading branch information
elisemercury authored Jul 3, 2022
1 parent 17e1ff7 commit fd1b4f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoclean/autoclean.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from timeit import default_timer as timer
import pandas as pd
from loguru import logger
from autoclean.modules import *
from autoclean.version import __version__
from AutoClean.modules import *
from AutoClean.version import __version__

class AutoClean:

Expand Down Expand Up @@ -164,4 +164,4 @@ def _clean_data(self, df, input_data):
df = Adjust.convert_datetime(self, df)
df = EncodeCateg.handle(self, df)
df = Adjust.round_values(self, df, input_data)
return df
return df

0 comments on commit fd1b4f8

Please sign in to comment.