File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ def client(_mock_database: VuforiaDatabase) -> Iterator[VWS]:
3131 Yield a VWS client which connects to a mock.
3232 """
3333 vws_client = VWS (
34- server_access_key = _mock_database .server_access_key . decode () ,
35- server_secret_key = _mock_database .server_secret_key . decode () ,
34+ server_access_key = _mock_database .server_access_key ,
35+ server_secret_key = _mock_database .server_secret_key ,
3636 )
3737
3838 yield vws_client
@@ -46,8 +46,8 @@ def cloud_reco_client(_mock_database: VuforiaDatabase) -> Iterator[VWS]:
4646 Yield a VWS client which connects to a mock.
4747 """
4848 vws_client = VWS (
49- server_access_key = _mock_database .server_access_key . decode () ,
50- server_secret_key = _mock_database .server_secret_key . decode () ,
49+ server_access_key = _mock_database .server_access_key ,
50+ server_secret_key = _mock_database .server_secret_key ,
5151 )
5252
5353 yield vws_client
You can’t perform that action at this time.
0 commit comments