Skip to content
Snippets Groups Projects
Unverified Commit 828d8948 authored by deepsource-autofix[bot]'s avatar deepsource-autofix[bot] Committed by GitHub
Browse files

Unused parameter should be replaced by underscore (#49)

parent c07265a4
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ func main() {
}
}
func installGEOIPDB(context *cli.Context) error {
func installGEOIPDB(_ *cli.Context) error {
archive, err := zipdownload.DownloadZipped("https://download.ip2location.com/lite/IP2LOCATION-LITE-DB1.IPV6.BIN.ZIP")
if err != nil {
return err
......@@ -74,7 +74,7 @@ func installGEOIPDB(context *cli.Context) error {
return err
}
func createSigningKey(context *cli.Context) error {
func createSigningKey(_ *cli.Context) error {
sk, _, err := jws.GenerateKeyPair()
if err != nil {
return err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment