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