Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
fix: object is not callable
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladislav Prskavec committed Nov 14, 2021
1 parent 656f9bd commit ca91096
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from sphinx.errors import SphinxError
from pygments.lexers.data import YamlLexer


###########################################################################
# #
# Dredd documentation build configuration file #
Expand Down Expand Up @@ -150,5 +149,5 @@ def setup(app):
app.add_css_file('css/dredd.css')

# Adding lexers for rendering OpenAPI code blocks as YAML
app.add_lexer('openapi2', OpenAPI2Lexer())
app.add_lexer('openapi3', OpenAPI3Lexer())
app.add_lexer('openapi2', OpenAPI2Lexer)
app.add_lexer('openapi3', OpenAPI3Lexer)

0 comments on commit ca91096

Please sign in to comment.