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 afaecb8 commit 4f20150Copy full SHA for 4f20150
src/utils.jl
@@ -5,16 +5,16 @@ default_endpoints = {
5
"api" => "https://api.plot.ly/v2"}
6
7
type PlotlyCredentials
8
- username::AbstractString
9
- api_key::AbstractString
+ username::ASCIIString
+ api_key::ASCIIString
10
end
11
12
type PlotlyConfig
13
- plotly_domain::AbstractString
14
- plotly_api_domain::AbstractString
+ plotly_domain::ASCIIString
+ plotly_api_domain::ASCIIString
15
16
17
-function signin(username::AbstractString, api_key::AbstractString, endpoints=None)
+function signin(username::ASCIIString, api_key::ASCIIString, endpoints=None)
18
# Define session credentials/endpoint configuration, where endpoint is a Dict
19
20
global plotlycredentials = PlotlyCredentials(username, api_key)
0 commit comments