Skip to content

Commit

Permalink
mkdify scala style
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaoshi.wang committed Oct 8, 2018
1 parent da2c07a commit 039a63a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ trait PySparkJobProcessor {

def getLocalTmpDirPath: String

def complete(code:String,cursor_pos:Int):String
def complete(code: String, cursor_pos: Int): String
}
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ private class PythonInterpreter(
}
}

override def complete(code: String, cursor: Int): Array[String] ={
val r = pysparkJobProcessor.complete(code,cursor)
override def complete(code: String, cursor: Int): Array[String] = {
val r = pysparkJobProcessor.complete(code, cursor)
r.split(",")
}

Expand Down

0 comments on commit 039a63a

Please sign in to comment.