()
| 27 | |
| 28 | |
| 29 | def _get_config_path(): |
| 30 | DEFAULT_XDG_CONFIG_HOME = os.path.join(os.path.expanduser("~"), ".config") |
| 31 | data_home_path = os.environ.get("XDG_CONFIG_HOME", DEFAULT_XDG_CONFIG_HOME) |
| 32 | return os.path.join(data_home_path, "lesspass") |
| 33 | |
| 34 | |
| 35 | def range_type(value_string): |