| commit | 8b38bc6dd248c4a0316aea5b8410eea90166cf6d | [log] [tgz] |
|---|---|---|
| author | Chris Parsons <cparsons@google.com> | Mon Nov 19 19:15:49 2018 -0500 |
| committer | Chris Parsons <cparsons@google.com> | Mon Nov 19 19:15:49 2018 -0500 |
| tree | 3ddccdc76dc1c41131a4aaf8d9dd86672e68ef1c | |
| parent | 9f879355d7d6b75eb4442ff0ffef6edd717ff578 [diff] |
ran buildifier on sets.bzl
diff --git a/lib/sets.bzl b/lib/sets.bzl index 5db7ae3..f62e03d 100644 --- a/lib/sets.bzl +++ b/lib/sets.bzl
@@ -68,8 +68,8 @@ True if `a` is equal to `b`, False otherwise. """ _precondition_only_sets_or_lists(a, b) - # Convert both values to a depset then back to a list to - # remove duplicates. + + # Convert both values to a depset then back to a list to remove duplicates. a = _depset_to_list(depset(a)) b = _depset_to_list(depset(b)) return sorted(a) == sorted(b)