We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
位置:
当前原文:
# Example @check_attributes(name=SizedString(size=8), shares=UnsignedInteger, price=UnsignedFloat) class Stock: def __init__(self, name, shares, price): self.name = name self.shares = shares self.price = price
share
price
<class 'type'>
<class '__main__.UnsignedInteger'>
shares=UnsignedInteger(), price=UnsignedFloat()
改正后内容:
# Example @check_attributes(name=SizedString(size=8), shares=UnsignedInteger(), price=UnsignedFloat()) class Stock: def __init__(self, name, shares, price): self.name = name self.shares = shares self.price = price
望解答指正~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
位置:
当前原文:
share
和price
字段未示例化,类型为<class 'type'>
。<class '__main__.UnsignedInteger'>
,即:shares=UnsignedInteger(), price=UnsignedFloat()
改正后内容:
The text was updated successfully, but these errors were encountered: