python object() 没有参数错误

标签 python

我不敢相信这实际上是一个问题,但我一直在尝试调试这个错误,但我一无所获。我确定我错过了一些非常简单的东西,因为这看起来很愚蠢。

import Experiences, Places, Countries
class Experience(object):

    def make_place(self, place):
        addr = place["address"]
        addr = Places.ttypes.Address(addr["street"], addr["city"], addr["state"], Countries.ttypes._NAMES_TO_VALUES[addr["country"]], addr["zipcode"])
        ll = Geocoder.geocode(addr["street"]+", "+addr["city"]+", "+addr["state"]+" "+addr["zipcode"])
        place["location"] = Places.ttypes.Location(ll[0].coordinates[0], ll[0].coordinates[1])

    def __init__(self, exp_dict):
        exp_dict["datetimeInterval"] = Experiences.ttypes.DateTimeInterval(remove(exp_dict, "startTime"), remove(exp_dict, "endTime"))
        exp_dict["type"] = Experiences.ttypes.ExperienceType.OPEN
        exp_dict["place"] = self.make_place(exp_dict["place"])
        self.obj = Experiences.ttypes.Experience(**exp_dict)

@client.request
@client.catchClientException
def addExperience(thrift, access_token, exp_dict):
    experience = Experience(exp_dict)
    return thrift.client.addExperience(thrift.CLIENT_KEY, access_token, experience.obj)

(与addExperience对应的两个装饰器是因为这是在声明其类的文件之外定义的。)

我得到的错误是:

experience = Experience(exp_dict)
TypeError: object() takes no parameters

所以这对我来说没有任何意义,因为我清楚地为 init 函数声明了第二个参数。任何帮助都会很棒!

Traceback (most recent call last):
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1836, in __call__
    return self.wsgi_app(environ, start_response)
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1820, in wsgi_app
    response = self.make_response(self.handle_exception(e))
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1403, in handle_exception
    reraise(exc_type, exc_value, tb)
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
    response = self.full_dispatch_request()
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
    rv = self.dispatch_request()
  File "/Users/phil/Hangify/hy-frontend-server/env/lib/python2.7/site-    packages/flask/app.py", line 1461, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/Users/phil/Hangify/hy-frontend-server/hangify/session.py", line 22, in check_login
    return f()
  File "/Users/phil/Hangify/hy-frontend-server/hangify/handlers/create.py", line 31, in Handle
    res = exp.addExperience(hangify.thrift_interface, access_token, experience)
  File "/Users/phil/Hangify/hy-frontend-server/hangify/client/__init__.py", line 22, in decorator
    obj = func(client, *args, **kwargs)
  File "/Users/phil/Hangify/hy-frontend-server/hangify/client/__init__.py", line 30, in decorator
    return func(*args, **kwargs)
  File "/Users/phil/Hangify/hy-frontend-server/hangify/client/exp.py", line 39, in addExperience
    experience = Experience(exp_dict)
TypeError: object() takes no parameters

这里是 Experience.mro() - 它表示 Experience 类的正确模块位置:

[<class 'hangify.client.exp.Experience'>, <type 'object'>]

这里是目录(经验):

 ['__class__', '__delattr__', '__dict__', '__doc__', '__format__',
 '__getattribute__', '__hash__', '__init__', '__module__', '__new__',
 '__reduce__', '__reduce_ex__', '__repr__', '__setattr__',
 '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'make_place']

最佳答案

您混合了制表符和空格。 __init__ 实际上是嵌套在另一个方法中定义的,因此您的类没有自己的 __init__ 方法,而是继承了 object.__init__ 。在记事本中打开您的代码,而不是您正在使用的任何编辑器,您将看到您的代码,就像 Python 的选项卡处理规则一样。

这就是为什么你不应该混合制表符和空格。坚持一个或另一个。建议使用空格。

关于python object() 没有参数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23176597/

相关文章:

python - 浮点模 *完全* "wrong"

python - 我会称之为高级元组操作吗?

python - 在 Python 中,some_string.lower() 和 str.lower(some_string) 有什么区别

python - 使用 pymongo 时使用字典键作为 _id

python - 如何使用列表值创建颜色渐变一维热图(带状图)?

python - Python 中的 __rlshift__、__ror__

python - 猜谜游戏程序的错误

python - 强制字符串成为一个衬垫

python - 在 pandas python 中获取相对于当前索引的最大值

python - Flask render_template() 返回 "NameError: name ' app' 未定义”