Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
245 Bytes
package processinglock
import (
"github.com/pkg/errors"
)
// Static errors
var (
// ErrNoLock is returned when a lock can not be acquired due to normal causes.
ErrNoLock = errors.New("advisory lock already taken or incompatible version")
)