rename model -> dal for github
This commit is contained in:
parent
12330dd604
commit
232d62b3b7
1 changed files with 2 additions and 2 deletions
|
@ -210,8 +210,8 @@ def iter_gdpr_events() -> Iterator[Res[Event]]:
|
||||||
|
|
||||||
# TODO hmm. not good, need to be lazier?...
|
# TODO hmm. not good, need to be lazier?...
|
||||||
@mcachew(paths.github.cache_dir, hashf=lambda dal: dal.sources)
|
@mcachew(paths.github.cache_dir, hashf=lambda dal: dal.sources)
|
||||||
def iter_backup_events(model=get_dal()) -> Iterator[Event]:
|
def iter_backup_events(dal=get_dal()) -> Iterator[Event]:
|
||||||
for d in model.events():
|
for d in dal.events():
|
||||||
yield _parse_event(d)
|
yield _parse_event(d)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue