remove redundant a (#139046)

As per title, only one "a" is sufficient.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/139046
Approved by: https://github.com/Skylion007
This commit is contained in:
Masaki Kozuki
2024-10-28 17:47:21 +00:00
committed by PyTorch MergeBot
parent 66a3c249ae
commit 949fdd2997

View File

@ -651,7 +651,7 @@ def get_cached_ops():
return cached_ops
# Each OpOverload object contains pointer to a a specific operator overload, a pointer to the parent `OpOverloadPacket` object.
# Each OpOverload object contains pointer to a specific operator overload, a pointer to the parent `OpOverloadPacket` object.
# You can obtain an OpOverload object through attribute query on OpOverloadPacket.
class OpOverload(OperatorBase):
def __init__(self, overloadpacket, op, op_dk, schema, tags):