diff --git a/python/testData/addImport/comment.after.py b/python/testData/addImport/comment.after.py index 777f4800b8fc..a816490b3f43 100644 --- a/python/testData/addImport/comment.after.py +++ b/python/testData/addImport/comment.after.py @@ -1 +1 @@ -from urllib import urlopen, urlencode, unquote_plus # this is a comment \ No newline at end of file +from urllib import urlopen, urlencode, unquote_plus # this is a comment \ No newline at end of file diff --git a/python/testData/formatter/continuationIndentInIndentingStatement2_after.py b/python/testData/formatter/continuationIndentInIndentingStatement2_after.py index 703b4aeb2be4..b76f2ac2625f 100644 --- a/python/testData/formatter/continuationIndentInIndentingStatement2_after.py +++ b/python/testData/formatter/continuationIndentInIndentingStatement2_after.py @@ -1,4 +1,4 @@ def f(value, value1, value2): if value in ( - value1, value2) or value == 0: # <- missing continuation indent here + value1, value2) or value == 0: # <- missing continuation indent here return False \ No newline at end of file diff --git a/python/testData/inspections/QualifyByImport_after.py b/python/testData/inspections/QualifyByImport_after.py index 7718df735eeb..aa433efe2dee 100644 --- a/python/testData/inspections/QualifyByImport_after.py +++ b/python/testData/inspections/QualifyByImport_after.py @@ -1,3 +1,3 @@ import QualifyByImportFoo -QualifyByImportFoo.foo # must be qualified +QualifyByImportFoo.foo # must be qualified diff --git a/python/testData/refactoring/extractmethod/Comment2.after.py b/python/testData/refactoring/extractmethod/Comment2.after.py index 1260973086f6..5e5fdc3c6a8c 100644 --- a/python/testData/refactoring/extractmethod/Comment2.after.py +++ b/python/testData/refactoring/extractmethod/Comment2.after.py @@ -1,6 +1,6 @@ class Foo(): def baz(): - tmp = "!" #try to extract this assignmet, either with or without this comment + tmp = "!" #try to extract this assignmet, either with or without this comment baz() diff --git a/python/testData/refactoring/extractmethod/ElseBody.after.py b/python/testData/refactoring/extractmethod/ElseBody.after.py index 684a444fcbbe..57b5fa011715 100644 --- a/python/testData/refactoring/extractmethod/ElseBody.after.py +++ b/python/testData/refactoring/extractmethod/ElseBody.after.py @@ -1,5 +1,5 @@ def baz(f_new): - length = len(f_new.readlines()) #<---extract something from here + length = len(f_new.readlines()) #<---extract something from here print("hi from else")