Skip to content

Commit 3040655

Browse files
committed
Fix uuid
1 parent 8a8fb60 commit 3040655

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "Scryfall"
2-
uuid = "2741ddfe-b610-11e8-0c5b-c95511f51f88"
2+
uuid = "26fa0e40-23c6-5e70-8e5d-49a8a0c72583"
33
authors = ["Moelf <jerryling315@gmail.com>"]
44
version = "0.1.1"
55

src/Scryfall.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function getRaw(fuzzyName::AbstractString;kwargs...)
5252
fuzzyRequest = HTTP.request("GET","https://api.scryfall.com/cards/named?set=&fuzzy=$fuzzyName")
5353
end
5454
cardDict = JSON.parse(String(fuzzyRequest.body)) #return a dictonary for wrapper functions to use
55-
JSON.print(cardDict, 2)
55+
#= println(cardDict["name"]) =#
5656
return cardDict
5757
end
5858

0 commit comments

Comments
 (0)