Fix Typos

Note to self: double and triple check more!

turn "=" into "=="
This commit is contained in:
Florian Heilmann 2016-10-22 12:53:32 +02:00 committed by GitHub
parent fd1016695f
commit 5ac934bcc4

View file

@ -34,7 +34,7 @@ class BedTypes(object):
@classmethod
def values(cls):
return [getattr(cls, name) for name in cls.__dict__ if not (name.startswith("__") or name="values")]
return [getattr(cls, name) for name in cls.__dict__ if not (name.startswith("__") or name == "values")]
class BedOrigin(object):
LOWERLEFT = "lowerleft"
@ -42,7 +42,7 @@ class BedOrigin(object):
@classmethod
def values(cls):
return [getattr(cls, name) for name in cls.__dict__ if not (name.startswith("__") or name="values")]
return [getattr(cls, name) for name in cls.__dict__ if not (name.startswith("__") or name == "values")]
class PrinterProfileManager(object):
"""