In my case was the same error. The problem was in custom resource with several "PackedScene". This resource was connected to Player export slot.
Code example from my custom resource:
export(PackedScene) var inventory
export(PackedScene) var buy_menu
I solved it by changing "PackedScene" to "String, FILE" and the error disappeared. Maybe your case connected with this type of export.