options.json: move to cache
This commit is contained in:
parent
1168f39aee
commit
38511ffccc
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
|
@ -359,7 +359,7 @@ def serialize_paths(obj: object):
|
||||||
raise TypeError("Type not Serializable")
|
raise TypeError("Type not Serializable")
|
||||||
|
|
||||||
|
|
||||||
with (root_dir() / "options.json").open("w") as options:
|
with (cache_dir() / "options.json").open("w") as options:
|
||||||
json.dump(
|
json.dump(
|
||||||
fp=options,
|
fp=options,
|
||||||
obj={
|
obj={
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
|
|
||||||
for (idx, card) in cards.enumerate() {
|
for (idx, card) in cards.enumerate() {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import "common.typ"
|
import "common.typ"
|
||||||
|
|
||||||
let options = json("options.json")
|
let options = json("cache/options.json")
|
||||||
let cards = options.cards
|
let cards = options.cards
|
||||||
let args = options.args
|
let args = options.args
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue