Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AnirudhDagar committed Nov 19, 2024
1 parent cdc1124 commit baf2e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autogluon/assistant/prompting/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def get_outer_columns(all_columns, num_columns_each_end=10):
if len(all_columns) <= num_columns_each_end * 2:
return list(all_columns)
return all_columns[:num_columns_each_end] + all_columns[-num_columns_each_end:]
return all_columns[:num_columns_each_end] + all_columns[-num_columns_each_end:]

0 comments on commit baf2e84

Please sign in to comment.