We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c6f14a commit 05c870eCopy full SHA for 05c870e
pins/boards.py
@@ -770,6 +770,7 @@ def board_deparse(board: BaseBoard):
770
771
The example below deparses a board connected to Posit Connect.
772
773
+ >>> from pins.constructors import board_connect
774
>>> board_deparse(board_connect(server_url="http://example.com", api_key="xxx"))
775
"board_connect(server_url='http://example.com')"
776
@@ -779,6 +780,7 @@ def board_deparse(board: BaseBoard):
779
780
781
Below is an example of representing a board connected to a local folder.
782
783
+ >>> from pins.constructors import board_folder
784
>>> board_deparse(board_folder("a/b/c"))
785
"board_folder('a/b/c')"
786
0 commit comments