Skip to content

Commit

Permalink
fix: pdoc failure (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
cynicaljoy authored Dec 3, 2024
1 parent dd48ff7 commit 62ca060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fauna/query/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __getattr__(name):


def __dir__():
return super.__dir__() + "StreamToken" # pyright: ignore
return list(super.__dir__(None)) + list("StreamToken") # pyright: ignore


class Page:
Expand Down

0 comments on commit 62ca060

Please sign in to comment.