X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=site_config.py;h=7f6410d39356c1d0d8f910cfcece67eaf4cff29e;hb=e8fbbb7306430478dec55d2c963eed116d8330cc;hp=fcf22a8d2cf20d4e6a6dd83690a51de08ce2f44d;hpb=95cff312b239bea10e8adbffd1586e42472bf9e9;p=python_utils.git diff --git a/site_config.py b/site_config.py index fcf22a8..7f6410d 100644 --- a/site_config.py +++ b/site_config.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +"""Location/site dependent data.""" + import logging import platform from dataclasses import dataclass @@ -27,6 +29,8 @@ args.add_argument( @dataclass class SiteConfig(object): + """The set of information specific to where the program is running.""" + location_name: str location: Location network: str @@ -129,7 +133,7 @@ def effective_location(location_override: Optional[str] = None) -> str: if location_override is None or location_override == 'NONE': location = this_location() else: - logger.debug(f'site_config\'s location_override was set to: {location_override}') + logger.debug('site_config\'s location_override was set to: %s', location_override) location = location_override return location