Compare commits
1 Commits
e4d6f0940d
...
41cd6ea852
Author | SHA1 | Date |
---|---|---|
|
41cd6ea852 |
|
@ -496,7 +496,7 @@ class Account(Struct):
|
||||||
|
|
||||||
_mktmap_table: dict[str, MktPair] | None = None,
|
_mktmap_table: dict[str, MktPair] | None = None,
|
||||||
|
|
||||||
only_require: list[str]|True = True,
|
only_require: list[str]|None = None,
|
||||||
# ^list of fqmes that are "required" to be processed from
|
# ^list of fqmes that are "required" to be processed from
|
||||||
# this ledger pass; we often don't care about others and
|
# this ledger pass; we often don't care about others and
|
||||||
# definitely shouldn't always error in such cases.
|
# definitely shouldn't always error in such cases.
|
||||||
|
@ -549,14 +549,7 @@ class Account(Struct):
|
||||||
if _mktmap_table is None:
|
if _mktmap_table is None:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
required: bool = (
|
required: bool = fqme in only_require
|
||||||
only_require is True
|
|
||||||
or (
|
|
||||||
only_require is not True
|
|
||||||
and
|
|
||||||
fqme in only_require
|
|
||||||
)
|
|
||||||
)
|
|
||||||
# XXX: caller is allowed to provide a fallback
|
# XXX: caller is allowed to provide a fallback
|
||||||
# mktmap table for the case where a new position is
|
# mktmap table for the case where a new position is
|
||||||
# being added and the preloaded symcache didn't
|
# being added and the preloaded symcache didn't
|
||||||
|
|
Loading…
Reference in New Issue