Compare commits
3 commits
ebd46a7a21
...
f0c28d2440
Author | SHA1 | Date | |
---|---|---|---|
Edward Betts | f0c28d2440 | ||
Edward Betts | 748ec3a1bc | ||
Edward Betts | d813bff812 |
|
@ -39,7 +39,6 @@ from . import (
|
||||||
)
|
)
|
||||||
from .types import Event, StrDict, Trip
|
from .types import Event, StrDict, Trip
|
||||||
|
|
||||||
|
|
||||||
here = dateutil.tz.tzlocal()
|
here = dateutil.tz.tzlocal()
|
||||||
|
|
||||||
# deadline to file tax return
|
# deadline to file tax return
|
||||||
|
@ -267,7 +266,11 @@ def busy_event(e: Event) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
lc_title = e.title.lower()
|
lc_title = e.title.lower()
|
||||||
return "rebels" not in lc_title and "south west data social" not in lc_title
|
return (
|
||||||
|
"rebels" not in lc_title
|
||||||
|
and "south west data social" not in lc_title
|
||||||
|
and "dorkbot" not in lc_title
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
async def time_function(
|
async def time_function(
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from .types import Event
|
from .types import Event
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
@ -18,7 +19,7 @@ def get_events(data_dir: str) -> list[Event]:
|
||||||
|
|
||||||
return [
|
return [
|
||||||
Event(
|
Event(
|
||||||
date=item["dates"]["registry_ends_at"],
|
date=datetime.fromisoformat(item["dates"]["registry_ends_at"]).date(),
|
||||||
name="domain",
|
name="domain",
|
||||||
title=item["fqdn"] + " renewal",
|
title=item["fqdn"] + " renewal",
|
||||||
)
|
)
|
||||||
|
|
|
@ -131,6 +131,7 @@ def main() -> None:
|
||||||
asyncio.run(update_bank_holidays())
|
asyncio.run(update_bank_holidays())
|
||||||
asyncio.run(update_bristol_bins())
|
asyncio.run(update_bristol_bins())
|
||||||
update_gwr_advance_ticket_date()
|
update_gwr_advance_ticket_date()
|
||||||
|
update_gandi()
|
||||||
|
|
||||||
update_thespacedevs()
|
update_thespacedevs()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue