Skip to content

Commit

Permalink
Merge pull request #1607 from camptocamp/audit-1.2
Browse files Browse the repository at this point in the history
Fix CVE
  • Loading branch information
sbrunner authored Mar 19, 2024
2 parents 6c54fe8 + 81df46d commit 4ed837e
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 108 deletions.
8 changes: 5 additions & 3 deletions c2cciutils/scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,11 @@ def main() -> None:
google_calendar = None
google_calendar_config = cast(
c2cciutils.configuration.PublishGoogleCalendarConfig,
config.get("publish", {}).get("google_calendar", {})
if config.get("publish", {}).get("google_calendar", False)
else {},
(
config.get("publish", {}).get("google_calendar", {})
if config.get("publish", {}).get("google_calendar", False)
else {}
),
)

docker_config = cast(
Expand Down
Loading

0 comments on commit 4ed837e

Please sign in to comment.