Skip to content
Snippets Groups Projects
Commit 50ba43b8 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Black format

parent 840d852d
No related branches found
No related tags found
1 merge request!1Merge python environment
Pipeline #12494 failed
...@@ -13,10 +13,10 @@ from os.path import dirname, realpath, join ...@@ -13,10 +13,10 @@ from os.path import dirname, realpath, join
from setuptools_scm import get_version from setuptools_scm import get_version
version = 'unknown version' version = "unknown version"
try: try:
version = get_version(root='..', relative_to=__file__) version = get_version(root="..", relative_to=__file__)
except LookupError: except LookupError:
with open(join(realpath(dirname(__file__)), "version.txt"), 'r') as fobj: with open(join(realpath(dirname(__file__)), "version.txt"), "r") as fobj:
version = fobj.read() version = fobj.read()
...@@ -22,7 +22,7 @@ __maintainer__ = "Johannes Schumann" ...@@ -22,7 +22,7 @@ __maintainer__ = "Johannes Schumann"
__email__ = "jschumann@km3net.de" __email__ = "jschumann@km3net.de"
__status__ = "Development" __status__ = "Development"
CONFIG_PATH = os.path.expanduser('~/.km3buu/config') CONFIG_PATH = os.path.expanduser("~/.km3buu/config")
log = get_logger(__name__) log = get_logger(__name__)
...@@ -37,7 +37,7 @@ class Config(object): ...@@ -37,7 +37,7 @@ class Config(object):
if section not in self.config.sections(): if section not in self.config.sections():
self.config.add_section(section) self.config.add_section(section)
self.config.set(section, key, value) self.config.set(section, key, value)
with open(self._config_path, 'w') as f: with open(self._config_path, "w") as f:
self.config.write(f) self.config.write(f)
def get(self, section, key, default=None): def get(self, section, key, default=None):
...@@ -59,17 +59,17 @@ class Config(object): ...@@ -59,17 +59,17 @@ class Config(object):
dev_path = abspath(join(dirname(__file__), os.pardir, IMAGE_NAME)) dev_path = abspath(join(dirname(__file__), os.pardir, IMAGE_NAME))
if isfile(dev_path): if isfile(dev_path):
image_path = dev_path image_path = dev_path
elif click.confirm("Is the GiBUU image already available?", elif click.confirm("Is the GiBUU image already available?", default=False):
default=False): image_path = click.prompt(
image_path = click.prompt("GiBUU image path?", "GiBUU image path?", type=click.Path(exists=True, dir_okay=False)
type=click.Path(exists=True, )
dir_okay=False))
elif click.confirm("Install image from remote?", default=True): elif click.confirm("Install image from remote?", default=True):
default_dir = join(os.environ["HOME"], ".km3buu") default_dir = join(os.environ["HOME"], ".km3buu")
image_dir = click.prompt( image_dir = click.prompt(
"GiBUU image path (default: ~/.km3buu) ?", "GiBUU image path (default: ~/.km3buu) ?",
type=click.Path(exists=True, file_okay=False), type=click.Path(exists=True, file_okay=False),
default=default_dir) default=default_dir,
)
image_path = build_image(image_dir) image_path = build_image(image_dir)
self.set(section, key, image_path) self.set(section, key, image_path)
return image_path return image_path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment