Skip to content

Commit

Permalink
tryings
Browse files Browse the repository at this point in the history
Follow-Up: cba85a6
  • Loading branch information
SpEcHiDe committed Feb 7, 2024
1 parent 921e1b8 commit cabf3b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ venv:
$(RM) $(VENV)
python3 -m venv $(VENV)
$(PYTHON) -m pip install -U pip wheel setuptools
$(PYTHON) -m pip install -U -e .
$(PYTHON) -m pip install -U -e .[docs]
@echo "Created venv with $$($(PYTHON) --version)"

clean-build:
Expand Down
2 changes: 1 addition & 1 deletion compiler/docs/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def get_title_list(s: str) -> list:
VideoChatScheduled
VideoChatStarted
VideoChatEnded
VideoChatMembersInvited
VideoChatParticipantsInvited
WebAppData
MessageReactions
ChatReactions
Expand Down
3 changes: 3 additions & 0 deletions docs/source/api/errors/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ follow the usual *PascalCase* convention.
There isn't any official list of all possible RPC errors, so the list of known errors is provided on a best-effort basis. When new methods are available, the list may be lacking since we simply don't know what errors can raise from them. Pyrogram creates an `unknown_errors.txt` file in the root directory from where the `Client` is run.
.. admonition :: PLEASE DO NOT DO THIS
.. tip::
If you do not want this file to be created, set the `PYROGRAM_DONOT_LOG_UNKNOWN_ERRORS` environment variable before running the Pyrogram `Client`.
.. tip::
If you want the file to be created in a different location, set the `PYROGRAM_LOG_UNKNOWN_ERRORS_FILENAME` to a file path of your choice.
Expand Down

0 comments on commit cabf3b2

Please sign in to comment.