Skip to content

Commit 6ad7862

Browse files
committed
squash: fix typo
1 parent 5ff7685 commit 6ad7862

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tmt/utils/_threading.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ class RLock(_Lock[threading.RLock, T]):
7373
# is not assigned to any global name. Instead, it is wrapped by
7474
# the lock, and "borrowed" to caller using the context manager
7575
# approach:
76-
SHARED_DATA: Lock[list[str]] = RLock([])
76+
SHARED_DATA: RLock[list[str]] = RLock([])
7777
7878
...
7979
80-
# `data` below is the list given to `Lock()` above:
80+
# `data` below is the list given to `RLock()` above:
8181
with SHARED_DATA as data:
8282
data += [...]
8383

0 commit comments

Comments
 (0)