Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Sep 8, 2022
1 parent 5fadd03 commit 8adf9a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions LICENSE
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -178,15 +178,15 @@ Apache License
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright 2022 "Jon Crall"

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -198,4 +198,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
3 changes: 3 additions & 0 deletions dev/build_base_docker2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
Use version in ~/code/vtool_ibeis_ext/dev/build_base_docker2.py instead
"""
import ubelt as ub
import os

Expand Down
2 changes: 1 addition & 1 deletion vtool_ibeis/other.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def compute_unique_data_ids_(hashable_rows, iddict_=None):
for row in hashable_rows:
if row not in iddict_:
iddict_[row] = len(iddict_)
dataid_list = ut.dict_take(iddict_, hashable_rows)
dataid_list = list(ub.take(iddict_, hashable_rows))
return dataid_list


Expand Down

0 comments on commit 8adf9a7

Please sign in to comment.