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 3c2f606 commit d6a53e6Copy full SHA for d6a53e6
pins/constructors.py
@@ -47,9 +47,9 @@ def board_deparse(board: BaseBoard):
47
prot = board.fs.protocol
48
if prot == "rsc":
49
url = board.fs.api.server_url
50
- return f"board_rsconnect(server_url={repr(url)})"
+ return f"board_rsconnect(server_url={repr(url)}, allow_pickle_read={board.allow_pickle_read})"
51
elif prot == "file":
52
- return f"board_folder({repr(board.board)})"
+ return f"board_folder({repr(board.board)}, allow_pickle_read={board.allow_pickle_read})"
53
else:
54
raise NotImplementedError(
55
f"board deparsing currently not supported for protocol: {prot}"
0 commit comments