test#14
Conversation
|
running |
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def poo (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def poo (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def poo (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def poo (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def poo (a = 90, b = 80): |
There was a problem hiding this comment.
The code does not comply to PEP8.
Origin: PEP8Bear, Section: cli.
The issue can be fixed by applying the following patch:
--- a/test.py
+++ b/test.py
@@ -2,5 +2,6 @@
x = random.randint()
-def poo (a = 90, b = 80):
+
+def poo(a=90, b=80):
return a+b|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def amended (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def amended (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def amended (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def amended (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def amended (a = 90, b = 80): |
There was a problem hiding this comment.
The code does not comply to PEP8.
Origin: PEP8Bear, Section: cli.
The issue can be fixed by applying the following patch:
--- a/test.py
+++ b/test.py
@@ -2,5 +2,6 @@
x = random.randint()
-def amended (a = 90, b = 80):
+
+def amended(a=90, b=80):
return a+b|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def third (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def third (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def third (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def third (a = 90, b = 80): |
There was a problem hiding this comment.
E251 unexpected spaces around keyword / parameter equals
Origin: PycodestyleBear (E251), Section: cli.
|
|
||
| def poo (a=90, b=80): | ||
| return a + b | ||
| def third (a = 90, b = 80): |
There was a problem hiding this comment.
The code does not comply to PEP8.
Origin: PEP8Bear, Section: cli.
The issue can be fixed by applying the following patch:
--- a/test.py
+++ b/test.py
@@ -2,5 +2,6 @@
x = random.randint()
-def third (a = 90, b = 80):
+
+def third(a=90, b=80):
return a+b
test