Skip to content

Commit

Permalink
Feat: swtich verbose tag to false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickm663 committed Jan 25, 2024
1 parent 22633c2 commit f9e8b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HMD.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using HTTP, CSV, DataFrames
include("utils.jl")

"""
`read_HMD(country::String, tbl::String, grp::String, username::String, password::String; save=false, verbose=true)`
`read_HMD(country::String, tbl::String, grp::String, username::String, password::String; save=false, verbose=false)`
Takes as input the country, table, interval and user credentials.
Expand All @@ -24,7 +24,7 @@ Optional:
Returns a `DataFrame` object if successful.
"""
function read_HMD(country::String, tbl::String, grp::String, username::String, password::String; save=false, verbose=true)
function read_HMD(country::String, tbl::String, grp::String, username::String, password::String; save=false, verbose=false)
if verbose
println("Checking inputs are valid...")
end
Expand Down

0 comments on commit f9e8b6b

Please sign in to comment.