Skip to content

Commit

Permalink
hotfix bugfix to support testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aschroed committed Apr 5, 2024
1 parent 7ef13be commit 2f53e9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/delete_item_or_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
NOTE: can use patch_field_for_many_items script to delete a single field for many items
but this script is more direct/flexible in some ways
'''
import sys
import argparse
from dcicutils.ff_utils import get_metadata, delete_metadata, delete_field
from functions import script_utils as scu
Expand All @@ -25,7 +26,7 @@ def get_args(args):


def main(): # pragma: no cover
args = get_args()
args = get_args(sys.argv[1:])
auth = scu.authenticate(key=args.key, keyfile=args.keyfile, env=args.env)
dry_run = True
if args.dbupdate:
Expand Down

0 comments on commit 2f53e9c

Please sign in to comment.