Skip to content

test#14

Open
fneu wants to merge 1 commit into
masterfrom
fneu-patch-2
Open

test#14
fneu wants to merge 1 commit into
masterfrom
fneu-patch-2

Conversation

@fneu
Copy link
Copy Markdown
Owner

@fneu fneu commented Aug 31, 2017

test

@fneu
Copy link
Copy Markdown
Owner Author

fneu commented Aug 31, 2017

running

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def poo (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def poo (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def poo (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def poo (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def poo (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def amended (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def amended (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def amended (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def amended (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py Outdated

def poo (a=90, b=80):
return a + b
def amended (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Comment thread test.py

def poo (a=90, b=80):
return a + b
def third (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py

def poo (a=90, b=80):
return a + b
def third (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py

def poo (a=90, b=80):
return a + b
def third (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py

def poo (a=90, b=80):
return a + b
def third (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

E251 unexpected spaces around keyword / parameter equals

Origin: PycodestyleBear (E251), Section: cli.

Comment thread test.py

def poo (a=90, b=80):
return a + b
def third (a = 90, b = 80):
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant