GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

BaseRenderer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 1
c 3
b 0
f 0
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 3 1
1
class BaseRenderer:
2
    """ Base class that all renderers are based on """
3
4
    def render(self, text):
5
        """ Render marked up text as html """
6
        raise NotImplementedError
7
8
# make renderers easily accessible
9
from simple_forums.backends.renderers.markdown_renderer import (			# noqa
10
    MarkdownRenderer)
11
from simple_forums.backends.renderers.text_renderer import TextRenderer  	# noqa
12