Skip to content

Commit d9cd0f8

Browse files
committed
Disable pylint old-style-class
1 parent d00ec10 commit d9cd0f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ confidence=
5757
disable=fixme,
5858
missing-docstring,
5959
invalid-name,
60-
too-many-lines
60+
too-many-lines,
61+
old-style-class
6162
# Enable the message, report, category or checker with the given id(s). You can
6263
# either give multiple identifier separated by comma (,) or put this option
6364
# multiple time (only on the command line, not in the configuration file where

dash/resources.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ def get_all_resources(self, dev_bundles=False):
7575
return res
7676

7777

78-
class Css:
79-
# pylint: disable=old-style-class
78+
class Css: # pylint: disable=old-style-class
8079
def __init__(self, layout=None):
8180
self._resources = Resources('_css_dist', layout)
8281
self._resources.config = self.config

0 commit comments

Comments
 (0)