Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
koperagen committed Jan 29, 2025
1 parent 8cc6c00 commit bddf7bf
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import kotlin.reflect.KProperty

// region DataFrame


/**
* ## The Distinct Operation
*
Expand All @@ -36,6 +35,7 @@ import kotlin.reflect.KProperty
* @see {@include [DocumentationUrls.Distinct]}
*/
@ExcludeFromSources
@Suppress("ClassName")
private interface DistinctDocs {
interface DISTINCT_PARAM
}
Expand Down Expand Up @@ -100,7 +100,6 @@ public fun <T> DataFrame<T>.distinctBy(vararg columns: String): DataFrame<T> = d
public fun <T> DataFrame<T>.distinctBy(vararg columns: AnyColumnReference): DataFrame<T> =
distinctBy { columns.toColumnSet() }


/**
* {@include [DistinctDocs]}
* {@set PHRASE_ENDING the specified columns}.
Expand Down

0 comments on commit bddf7bf

Please sign in to comment.