Skip to content

Commit

Permalink
Feat: Add Mixin to add created_by and updated_by for configuration ta…
Browse files Browse the repository at this point in the history
…ble (#128)

* Feat: Add Mixin to add created_by and updated_by for configuration models

* change name

* fix pylint

* fix linting

* correct linting

* fixing lint

* pylint resolving

* still resolving lint

* again resolving pylint

* ye again resolving pylint

* final resolving

* ignoring save method override warning

* remove unused imports
  • Loading branch information
Ashutosh619-sudo authored Dec 24, 2024
1 parent 29fc361 commit cf0de18
Show file tree
Hide file tree
Showing 5 changed files with 239 additions and 97 deletions.
7 changes: 4 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ disable=print-statement,
too-many-arguments,
too-many-locals,
too-few-public-methods,
super-with-arguments
super-with-arguments,
arguments-differ

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down Expand Up @@ -342,7 +343,7 @@ indent-string=' '
max-line-length=135

# Maximum number of lines in a module.
max-module-lines=1000
max-module-lines=1200

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
Expand Down Expand Up @@ -559,7 +560,7 @@ max-attributes=7
max-bool-expr=6

# Maximum number of branch for function / method body.
max-branches=13
max-branches=15

# Maximum number of locals for function / method body.
max-locals=20
Expand Down
Loading

0 comments on commit cf0de18

Please sign in to comment.