Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents da43a47 + 0449775 commit b9db530Copy full SHA for b9db530
git/util.py
@@ -802,11 +802,11 @@ class BlockingLockFile(LockFile):
802
def __init__(self, file_path, check_interval_s=0.3, max_block_time_s=MAXSIZE):
803
"""Configure the instance
804
805
- :parm check_interval_s:
+ :param check_interval_s:
806
Period of time to sleep until the lock is checked the next time.
807
By default, it waits a nearly unlimited time
808
809
- :parm max_block_time_s: Maximum amount of seconds we may lock"""
+ :param max_block_time_s: Maximum amount of seconds we may lock"""
810
super(BlockingLockFile, self).__init__(file_path)
811
self._check_interval = check_interval_s
812
self._max_block_time = max_block_time_s
0 commit comments