diff options
author | Mike Frysinger <vapier@google.com> | 2023-10-19 05:13:32 -0400 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-10-20 04:51:01 +0000 |
commit | d4aee6570b64c5b6de584b0a5ce76e6a139faf38 (patch) | |
tree | c70cfd687689cff85ca7682071ccd0c8f690536c /event_log.py | |
parent | 024df06ec15d7304fbb5f9a2b1aa44f2af9daf4c (diff) | |
download | git-repo-d4aee6570b64c5b6de584b0a5ce76e6a139faf38.tar.gz |
delete Python 2 (object) compat
Bug: 302871152
Change-Id: I39636d73a6e1d69efa8ade74f75c5381651e6dc8
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/390054
Commit-Queue: Mike Frysinger <vapier@google.com>
Reviewed-by: Aravind Vasudevan <aravindvasudev@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'event_log.py')
-rw-r--r-- | event_log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/event_log.py b/event_log.py index 60c1a437..ef01394a 100644 --- a/event_log.py +++ b/event_log.py | |||
@@ -21,7 +21,7 @@ TASK_SYNC_NETWORK = "sync-network" | |||
21 | TASK_SYNC_LOCAL = "sync-local" | 21 | TASK_SYNC_LOCAL = "sync-local" |
22 | 22 | ||
23 | 23 | ||
24 | class EventLog(object): | 24 | class EventLog: |
25 | """Event log that records events that occurred during a repo invocation. | 25 | """Event log that records events that occurred during a repo invocation. |
26 | 26 | ||
27 | Events are written to the log as a consecutive JSON entries, one per line. | 27 | Events are written to the log as a consecutive JSON entries, one per line. |