Skip to content

Commit

Permalink
quick type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nagakingg committed Feb 21, 2024
1 parent 5bd18c1 commit f850cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions curvesim/iterators/price_samplers/price_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __iter__(self) -> Iterator[PriceVolumeSample]:
yield PriceVolumeSample(timestamp, prices, volumes) # type:ignore

@property
def prices(self) -> DataFrame:
def prices(self):
"""
Returns price data for all asset pairs.
Expand All @@ -75,7 +75,7 @@ def prices(self) -> DataFrame:
return self.data["price"]

@property
def volumes(self) -> DataFrame:
def volumes(self):
"""
Returns volume data for all asset pairs.
Expand Down

0 comments on commit f850cfa

Please sign in to comment.