Skip to content

Commit

Permalink
Applied edit per #8
Browse files Browse the repository at this point in the history
Changed not False to is True.
  • Loading branch information
sfrinaldi committed Jan 6, 2025
1 parent 6068c09 commit a6b922d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doorstop/core/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def _itemize(header, data, document, mapping=None):

# Convert values for particular keys
if key in ("uid", "id"): # 'id' for backwards compatibility
if value is not False:
if value is True:
uid = value
prev_uid.append(uid)
# Checks for duplicate UID's that were already entered from the same csv file.
Expand Down

0 comments on commit a6b922d

Please sign in to comment.