Skip to content

Commit 18a9fab

Browse files
author
Roman
committed
typo
1 parent 5f8c518 commit 18a9fab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bittensor/core/metagraph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def __copy__(self):
931931
setattr(new_instance, key, value)
932932
return new_instance
933933

934-
def _apply_metagraph_ingo_mixin(self, metagraph_info: "MetagraphInfo"):
934+
def _apply_metagraph_info_mixin(self, metagraph_info: "MetagraphInfo"):
935935
"""
936936
Updates the attributes of the current object with data from a provided MetagraphInfo instance.
937937
@@ -1614,7 +1614,7 @@ async def _apply_metagraph_info(self):
16141614
"""Retrieves metagraph information for a specific subnet and applies it using a mixin."""
16151615
metagraph_info = await self.subtensor.get_metagraph_info(self.netuid)
16161616
if metagraph_info:
1617-
self._apply_metagraph_ingo_mixin(metagraph_info=metagraph_info)
1617+
self._apply_metagraph_info_mixin(metagraph_info=metagraph_info)
16181618

16191619

16201620
class Metagraph(NumpyOrTorch):
@@ -1903,7 +1903,7 @@ def _apply_metagraph_info(self):
19031903
"""Retrieves metagraph information for a specific subnet and applies it using a mixin."""
19041904
metagraph_info = self.subtensor.get_metagraph_info(self.netuid)
19051905
if metagraph_info:
1906-
self._apply_metagraph_ingo_mixin(metagraph_info=metagraph_info)
1906+
self._apply_metagraph_info_mixin(metagraph_info=metagraph_info)
19071907

19081908

19091909
async def async_metagraph(

0 commit comments

Comments
 (0)