Skip to content

Commit

Permalink
more_cleanig
Browse files Browse the repository at this point in the history
  • Loading branch information
karma9874 committed Dec 10, 2023
1 parent bb7ed41 commit 412ae31
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ func main() {

successfulRequests := 0
errorCount := 0

if err != nil {
panic(err)
}



Expand Down Expand Up @@ -106,7 +102,7 @@ func main() {

csvfileWriter, csvwriter_err := os.Create("Output.csv")
if csvwriter_err != nil{
panic(err)
panic(csvwriter_err)
}
defer csvfileWriter.Close()

Expand Down

0 comments on commit 412ae31

Please sign in to comment.