File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -943,22 +943,22 @@ def deep_copy(self, server=None):
943943 f ._data_pointer = self ._data_pointer
944944 except Exception as e :
945945 raise e
946- if self . meshed_region :
947- try :
946+ try :
947+ if self . meshed_region :
948948 f .meshed_region = self .meshed_region .deep_copy (server = server )
949- except DPFServerException as e :
950- if "the field doesn't have this support type" in str (e ):
951- pass
952- else :
953- raise e
954- if self . time_freq_support :
955- try :
949+ except DPFServerException as e :
950+ if "the field doesn't have this support type" in str (e ):
951+ pass
952+ else :
953+ raise e
954+ try :
955+ if self . time_freq_support :
956956 f .time_freq_support = self .time_freq_support .deep_copy (server = server )
957- except DPFServerException as e :
958- if "the field doesn't have this support type" in str (e ):
959- pass
960- else :
961- raise e
957+ except DPFServerException as e :
958+ if "the field doesn't have this support type" in str (e ):
959+ pass
960+ else :
961+ raise e
962962
963963 return f
964964
You can’t perform that action at this time.
0 commit comments