Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Jan 10, 2020
1 parent 7d0614d commit bf39aab
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 @@ -4,7 +4,7 @@ function createDocument(documentType, result, inlineOrExternal, type, hasBlockin
return new Promise((resolve, reject) => {
const iframe = document.createElement("iframe");
iframe.src =
"resources/moving-between-documents-iframe.py" +
"resources/moving-between-documents-iframe.py" +
"?result=" + result +
"&inlineOrExternal=" + inlineOrExternal +
"&type=" + type +
Expand Down Expand Up @@ -74,7 +74,7 @@ async function runTest(timing, destType, result, inlineOrExternal, type) {
}

const description =
`Move ${result} ${inlineOrExternal} ${type} script ` +
`Move ${result} ${inlineOrExternal} ${type} script ` +
`to ${destType} ${timing}`;

const t = async_test("Eval: " + description);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import time

"""
This script serves
This script serves
"""

def main(request, response):
Expand Down

0 comments on commit bf39aab

Please sign in to comment.