Skip to content

Commit

Permalink
give up
Browse files Browse the repository at this point in the history
  • Loading branch information
adhami3310 committed Jul 25, 2024
1 parent e5efaef commit 3ff130f
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions reflex/experimental/vars/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,37 +737,17 @@ def length(self) -> NumberVar:

@overload
@classmethod
def range(cls, stop: int | NumberVar, /) -> RangeOperation: # noqa: D418
"""Create a range of numbers.
Args:
stop: The end of the range.
Returns:
The range of numbers.
"""
...
def range(cls, stop: int | NumberVar, /) -> RangeOperation: ...

@overload
@classmethod
def range( # noqa: D418
def range(
cls,
start: int | NumberVar,
end: int | NumberVar,
step: int | NumberVar = 1,
/,
) -> RangeOperation:
"""Create a range of numbers.
Args:
start: The start of the range.
end: The end of the range.
step: The step of the range.
Returns:
The range of numbers.
"""
...
) -> RangeOperation: ...

@classmethod
def range(
Expand Down

0 comments on commit 3ff130f

Please sign in to comment.