Skip to content

Commit

Permalink
fix: fix quality checks
Browse files Browse the repository at this point in the history
  • Loading branch information
UsamaSadiq committed Mar 28, 2024
1 parent 41be574 commit 8cd1e91
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions help_tokens/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ def get_config_value(self, section_name, option, default_option="default"):
"""
Read a value from the configuration, with a default.
Args:
section_name (str): name of the section in the configuration from which
Args
----
section_name (str): Name of the section in the configuration from which
the option should be found.
option (str): name of the configuration option.
default_option (str): name of the default configuration option whose
option (str): Name of the configuration option.
default_option (str): Name of the default configuration option whose
value should be returned if the requested option is not found.
Returns:
str: the value from the ini file.
Returns
-------
str: The value from the ini file.
"""
if self.config is None:
Expand Down

0 comments on commit 8cd1e91

Please sign in to comment.