Skip to content

Commit

Permalink
[DOP-16270] Fix pre-commit hooks errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus authored and MTSOnGithub committed May 27, 2024
1 parent d7fdd86 commit 6157170
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Logging
=======

Logging is quite important to understant what's going on under the hood of onETL.
Logging is quite important to understand what's going on under the hood of onETL.

Default logging level for Python interpreters is ``WARNING``,
but most of onETL logs are in ``INFO`` level, so users usually don't see much.
Expand Down
2 changes: 1 addition & 1 deletion onetl/hwm/auto_hwm.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def update(self: AutoDetectHWM, value: Any) -> AutoDetectHWM:
def dict(self, **kwargs):
serialized_data = super().dict(**kwargs)
# as in HWM classes default value for 'value' may be any structure,
# e.g. frozendict for KeyValueHWM, there should unifed dict representation
# e.g. frozendict for KeyValueHWM, there should unified dict representation
serialized_data.pop("value")
return serialized_data
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -440,4 +440,4 @@ show_error_codes = True
disable_error_code = name-defined, misc

[codespell]
ignore-words-list = INOUT, inout
ignore-words-list = INOUT, inout, thirdparty

0 comments on commit 6157170

Please sign in to comment.