Skip to content

Commit

Permalink
fix sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marqueewinq committed Jan 22, 2024
1 parent a644dbf commit bf4051a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/insight/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def continuous(self, sr: pd.Series) -> bool:
All arithmetic operations can be done on continuous columns
"""
sr = self.infer_dtype(sr)
sr_dtype = str(sr.dtype)
if len(sr.unique()) >= max(
self.min_num_unique, self.ctl_mult * np.log(len(sr))
) and sr.dtype.kind in ("i", "u", "f"):
Expand Down

0 comments on commit bf4051a

Please sign in to comment.