Skip to content

Commit 6cf8895

Browse files
committed
no cover
1 parent fa4c4bf commit 6cf8895

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/alchemlyb/workflows/abfe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def read(self):
112112
self.logger.info(
113113
f'Reading {len(u_nk)} lines of u_nk from {file}')
114114
u_nk_list.append(u_nk)
115-
except Exception as exc: # pragma: no cover
115+
except Exception as exc:
116116
msg = f'Error reading read u_nk from {file}.\n{exc}'
117117
if self.ignore_warnings:
118118
self.logger.exception(msg +
@@ -126,7 +126,7 @@ def read(self):
126126
self.logger.info(
127127
f'Reading {len(dhdl)} lines of dhdl from {file}')
128128
dHdl_list.append(dhdl)
129-
except Exception as exc: # pragma: no cover
129+
except Exception as exc:
130130
msg = f'Error reading read dhdl from {file}.\n{exc}'
131131
if self.ignore_warnings:
132132
self.logger.exception(msg +

0 commit comments

Comments
 (0)