Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit f6831bb

Browse files
committed
ran blacken
1 parent cc79cde commit f6831bb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

google/cloud/bigtable/data/_metrics/data_model.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class TimeTuple:
5757
monotonic timestamp for calculating durations. The monotonic timestamp is
5858
preferred for calculations because it is resilient to clock changes, eg DST
5959
"""
60+
6061
utc: datetime.datetime = field(
6162
default_factory=lambda: datetime.datetime.now(datetime.timezone.utc)
6263
)
@@ -124,6 +125,7 @@ class ActiveAttemptMetric:
124125
A dataclass representing the data associated with an rpc attempt that is
125126
currently in progress. Fields are mutable and may be optional.
126127
"""
128+
127129
# keep both clock time and monotonic timestamps for active attempts
128130
start_time: TimeTuple = field(default_factory=TimeTuple)
129131
# the time it takes to recieve the first response from the server
@@ -434,7 +436,7 @@ async def __aenter__(self):
434436
Implements the async context manager protocol for wrapping unary calls
435437
436438
Using the operation's context manager provides assurances that the operation
437-
is always closed when complete, with the proper status code automaticallty
439+
is always closed when complete, with the proper status code automaticallty
438440
detected when an exception is raised.
439441
"""
440442
return self._AsyncContextManager(self)

0 commit comments

Comments
 (0)