Skip to content

Commit

Permalink
'Fixed' pylint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusfrdk committed Feb 4, 2025
1 parent 0d14977 commit a1497cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tomlval/toml_validator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
""" Validator class for validating TOML data. """

# pylint: disable=C0103
# pylint: disable=C0103,R1702

import inspect
import re
Expand Down
4 changes: 3 additions & 1 deletion tomlval/utils/unflatten.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
""" A module to unflatten a single level dictionary into a nested dictionary. """
""" A module to unflatten a flattened dictionary into a nested dictionary. """

# pylint: disable=R0912


def unflatten(dictionary: dict) -> dict:
Expand Down

0 comments on commit a1497cf

Please sign in to comment.