We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fe7ec9 commit 00996b5Copy full SHA for 00996b5
1 file changed
scaffoldgraph/utils/logging.py
@@ -78,7 +78,7 @@ def suppress_rdlogger(
78
79
def decorator(func):
80
@functools.wraps(func)
81
- def wrap_supress(*args, **kwargs):
+ def wrap_suppress(*args, **kwargs):
82
# rdkit version compatability.
83
prior_status = DEFAULT_RDLOGGER_STATUS
84
if rdversion >= '2020.09.01':
@@ -91,5 +91,5 @@ def wrap_supress(*args, **kwargs):
91
raise e
92
set_rdlogger_status(prior_status)
93
return result
94
- return wrap_supress
+ return wrap_suppress
95
return decorator
0 commit comments