diff options
| author | Aymeric Augustin | 2013-11-09 23:06:25 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-11-09 23:06:25 +0100 | 
| commit | 53360b6c2685ac76ccf6e7f8ce7a032a001adf4e (patch) | |
| tree | 39bd35631bc3bfd1b401c9fedffb908b814decf0 /debug_toolbar/panels/__init__.py | |
| parent | b8387222662e54da9c1cabbe5a9df698d25c594f (diff) | |
| download | django-debug-toolbar-53360b6c2685ac76ccf6e7f8ce7a032a001adf4e.tar.bz2 | |
Remove unused method in panel API.
Diffstat (limited to 'debug_toolbar/panels/__init__.py')
| -rw-r--r-- | debug_toolbar/panels/__init__.py | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/debug_toolbar/panels/__init__.py b/debug_toolbar/panels/__init__.py index 9998196..8be87e1 100644 --- a/debug_toolbar/panels/__init__.py +++ b/debug_toolbar/panels/__init__.py @@ -37,9 +37,6 @@ class DebugPanel(object):          """Title showing in panel"""          raise NotImplementedError -    def url(self): -        raise NotImplementedError -      def content(self):          if self.has_content:              context = self.context.copy() @@ -59,6 +56,7 @@ class DebugPanel(object):          return toolbar.stats.get(self.slug, {})      # Standard middleware methods +      def process_request(self, request):          pass | 
