diff --git a/openlcs/libs/corgi.py b/openlcs/libs/corgi.py index 87f852d1..1dc2da1f 100644 --- a/openlcs/libs/corgi.py +++ b/openlcs/libs/corgi.py @@ -163,7 +163,7 @@ def get_sync_fields(cls, component): """ Determines which fields to sync for a specified component. """ - sync_fields = CORGI_SYNC_FIELDS + sync_fields = CORGI_SYNC_FIELDS.copy() # Don't overwrite `license_declared` if corgi already has. if component.get("license_declared"): sync_fields.remove("license_declared")