Skip to content

Commit

Permalink
fix: replace back quotes ` enclosing variable names with single quotes '
Browse files Browse the repository at this point in the history
  • Loading branch information
ssato committed Feb 14, 2019
1 parent fb48817 commit f76a3de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anyconfig_configobj_backend/configobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

def make_configobj(cnf, **kwargs):
"""
Make a configobj.ConfigObj initalized with given config `cnf`.
Make a configobj.ConfigObj initalized with given config 'cnf'.
:param cnf: Configuration data
:param kwargs: optional keyword parameters passed to ConfigObj.__init__
Expand Down Expand Up @@ -89,7 +89,7 @@ class Parser(anyconfig.backend.base.StreamParser,

def dump_to_string(self, cnf, **kwargs):
"""
Dump config `cnf` to a string.
Dump config 'cnf' to a string.
:param cnf: Configuration data to dump
:param kwargs: backend-specific optional keyword parameters :: dict
Expand Down

0 comments on commit f76a3de

Please sign in to comment.