- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试调试一些Python(对该语言的了解几乎为零)。在某些代码中,有一行:
self.min_spread = self.exchange.account.get_fee * 2
这会返回错误:
Traceback (most recent call last):
File "launch.py", line 33, in <module>
main()
File "launch.py", line 28, in main
bot = marketmaker.MarketMaker(exchange, pair)
File "T:\mm-1.01\src\strategies\marketmaker.py", line 22, in __init__
self.min_spread = self.exchange.account.get_fee * 2
TypeError: unsupported operand type(s) for *: 'instancemethod' and 'int'
经过一番研究,我在 get_fee 之后添加了括号,但这没有效果。怎么了?
这是 Python 2.7。
编辑:
为了澄清,如果我添加括号,错误将变为:
File "T:\mm-1.01\src\strategies\marketmaker.py", line 22, in __init__
self.min_spread = self.exchange.account.get_fee() * 2
TypeError: unsupported operand type(s) for *: 'instancemethod' and 'int'
编辑:
这是帐户类别:
class Account():
def __init__(self, agent):
self.agent = agent
self._account()
def _account(self):
pass
def get_balance(self):
self._update_balance()
return self.balance
def get_fee(self):
return self.get_fee
def get_open_orders(self):
self._update_open_orders()
return self.open_orders
def cancel(self, order_id):
pass
def cancel_all(self, order_type='all'):
if order_type == 'all':
for order in self.get_open_orders():
self.cancel(order['order_id'])
else:
for order in self.get_open_orders():
if order['type'] == order_type:
self.cancel(order['order_id'])
最佳答案
似乎您忘记在函数调用后添加 ()
,所以:
self.exchange.account.get_fee() * 2
经过进一步研究,您的函数本身似乎有问题:
def get_fee(self):
return self.get_fee
现在它返回self.get_fee
,这是一个实例方法,它不返回任何值。这就是您收到错误的原因。
关于python - 类型错误 : unsupported operand type(s) for *: 'instancemethod' and 'int' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20561567/
Apple M1 芯片上的 Mac OS 11.6 节点版本是17.0.1 % node -v v17.0.1 这个错误似乎真的来 self 无法辨别的任何地方。 (我检查了我的软件更新,没有最近的操
运行 cv2.getRectSubPix(img, (5,5), (0,0)) 抛出错误: OpenCV Error: Unsupported format or combination of for
不可能在 itunesconnect 中发送应用程序的新版本。虽然上周,同样的版本发送发生了。在代码中,我只是改了一个按钮的名字,没有再改哪里。 但总是报错: 错误 ITMS-9000:“不支持的架构
鉴于下面的 HTML,我尝试使用 jQuery 来匹配所有具有类“foo”的跨度的列表项,并且该跨度应包含文本“relevant”。 Some text relevant Some more
Azure 开始出现以下错误: Unsupported token. Unable to initialize the authorization context. 每当我尝试更改我的应用程序时,我都
尝试安装friday软件包时,出现错误 Preprocessing library friday-0.2.2.0... src/Vision/Detector/Edge.hs:3:14: Unsupp
Azure 开始出现以下错误: Unsupported token. Unable to initialize the authorization context. 每当我尝试更改我的应用程序时,我都
我的代码抛出此错误 Failed to load resource: unsupported url在以下行: self.$el.find('.capturedImage').attr('src',
首先,请原谅它已经被问过或者可以很容易地通过谷歌找到。我发布这个是因为我的时间有限。这是录制音频和视频的代码。 stopPreview(); Log.d("stream
我正在尝试在 Android 上实现应用索引。 我有一个 Intent 过滤器,如下:
对于在 WAS 8.5 中运行的应用程序客户端,我们有代码创建套接字失败并出现以下错误。 SSLSocketFactory factory = (SSLSocketFactory) SSLSo
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我正在尝试从序列中获取生成的 key 。(使用 Servlet 和 Oracle10) 以下是我的代码: query ="insert into TABLE_NAME(COL1,COL2,COL3)
我的项目中有这个功能: def clean(self): if self.id_document_type == 'BC': now = date.today()
我在尝试 ARKit 时出现黑屏并显示以下错误消息。 WWDC 2017 示例 PlacingObjects 在同一设备上运行没有问题。 [] >>> FigVirtualFramebufferGet
ffmpeg 缺乏对 AAC 的默认支持真的很烦人: 我的 ffmpeg 版本: ffmpeg version git-2020-05-02-0d81edc Copyright (c) 2000-20
以下 config.xml 导致错误: ... ... ... 错误信息: Error Image 代码库是继承的,据我所知
创建位图上下文时出现此错误: CGBitmapContextCreate:不支持的参数组合:8 个整数位/组件; 24 位/像素;三分量色彩空间; kCGImageAlphaNone; 7936 字节
使用 pandas 读取 .xlsx 文件时出错。看起来它正在打开文件,因为它能够读取列名的前 8 个字符,即 员工编号 但因此错误而失败。我看到很多关于这个的帖子,但最后一部分从来都不是这些错误
我尝试执行下面的代码,但它抛出以下错误消息: Error: Syntax error, unrecognized expression: unsupported pseudo: really-good
我是一名优秀的程序员,十分优秀!