Skip to content

Commit

Permalink
Remove trailing commas to make it work on 2.11 again
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunk committed Nov 28, 2018
1 parent 0a36312 commit f8b9567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions core/shared/src/main/scala/plotly/layout/Axis.scala
Expand Up @@ -75,8 +75,7 @@ object Axis {
tickvals: Sequence = null,
ticktext: Sequence = null,
nticks: JInt = null,
automargin: JBoolean = null,

automargin: JBoolean = null
): Axis =
Axis(
Option(title),
Expand Down
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/plotly/layout/Margin.scala
Expand Up @@ -9,7 +9,7 @@ final case class Margin(
r: Option[Int],
t: Option[Int],
b: Option[Int],
pad: Option[Int],
pad: Option[Int]
)

object Margin {
Expand Down

0 comments on commit f8b9567

Please sign in to comment.