Skip to content

Commit

Permalink
Disable pylint old-style-class
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Nov 1, 2018
1 parent d00ec10 commit d9cd0f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ confidence=
disable=fixme,
missing-docstring,
invalid-name,
too-many-lines
too-many-lines,
old-style-class
# 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
# multiple time (only on the command line, not in the configuration file where
Expand Down
3 changes: 1 addition & 2 deletions dash/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ def get_all_resources(self, dev_bundles=False):
return res


class Css:
# pylint: disable=old-style-class
class Css: # pylint: disable=old-style-class
def __init__(self, layout=None):
self._resources = Resources('_css_dist', layout)
self._resources.config = self.config
Expand Down

0 comments on commit d9cd0f8

Please sign in to comment.