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.
Completed
Push — master ( cb14dc...316538 )
by samuel
57s
created

read_md()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 2
rs 10
1
from pypandoc import convert
2
3
4
def read_md(value):
5
    return convert(value, 'rst')
6
7
with open('README.rst', 'w') as outputfile:
8
    outputfile.write(read_md('README.md'))
9