Skip to content

Commit

Permalink
Remove unused arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Jun 14, 2024
1 parent 6fc6a30 commit f3e5f1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions tableone/tableone.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,7 @@ def create_intermediate_tables(self, data):

# compute standardized mean differences
if self._smd:
self.smd_table = self.tables.create_smd_table(data,
self._groupbylvls,
self.smd_table = self.tables.create_smd_table(self._groupbylvls,
self._continuous,
self._categorical,
self.cont_describe,
Expand Down
1 change: 0 additions & 1 deletion tableone/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def create_htest_table(self, data: pd.DataFrame,
return df

def create_smd_table(self,
data: pd.DataFrame,
groupbylvls,
continuous,
categorical,
Expand Down

0 comments on commit f3e5f1a

Please sign in to comment.