Git Product home page Git Product logo

Comments (6)

florentx avatar florentx commented on July 16, 2024

For the first one (E251), the message says that the correct syntax is:

p = Category.objects.get(id=categoryId)

For the E202 case, it complains about an extra whitespace before ')'.
If you can reproduce this issue with a very short snippet, please paste it here.
(or use a pastebin)

from pycodestyle.

bbrodriges avatar bbrodriges commented on July 16, 2024

I've faced the same problem in my code.
Here's a snippet:

def set_cookie(self, uid):

        '''Sets user cookie based on uid.'''

        response.set_cookie(
                '__utmb',
                uid,
                secret = self.COOKIE_SECRET_KEY,
                expires = time.time() + (3600 * 24 * 365),
                domain = '.mydomain.com',
                path = '/'
        )

And here is a traceback:

users.py:163:23: E251 no spaces around keyword / parameter equals
                secret = self.COOKIE_SECRET_KEY,
                      ^

pep8 0.6.1, python 2.7.2

from pycodestyle.

bbrodriges avatar bbrodriges commented on July 16, 2024

My mistake, I have found error.

from pycodestyle.

franciscolourenco avatar franciscolourenco commented on July 16, 2024

@bbrodriges how did you fix it?

from pycodestyle.

sigmavirus24 avatar sigmavirus24 commented on July 16, 2024

@aristidesfl when using keyword arguments/parameters in function calls you should not have spaces around the equal sign as per PEP8.

It should be

# snip
secret=self.COOKIE_SECRET_KEY,
expires=time.time() + (3600 * 24 * 365),
domain='.mydomain.com',
path='/'

I hope that helps.

from pycodestyle.

bbrodriges avatar bbrodriges commented on July 16, 2024

@sigmavirus24 indeed it is :)

from pycodestyle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.