From 61f1cac360d3aea55f4720f8d180f0385ac912b4 Mon Sep 17 00:00:00 2001 From: Nicholas Shavers <nshavers@contractor.usgs.gov> Date: Fri, 17 Jan 2025 11:26:03 -0800 Subject: [PATCH] lint + rebasing --- geomagio/Controller.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/geomagio/Controller.py b/geomagio/Controller.py index d9b73750..97d46793 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -505,7 +505,9 @@ def get_input_factory(args): if input_type in ["netcdf", "miniseed"]: input_stream = open(args.input_file, "rb") elif input_type in ["imagcdf"]: - input_factory_args["inputFile"] = args.input_file #imagcdf file is binary but lib used accepts a file path + input_factory_args["inputFile"] = ( + args.input_file + ) # imagcdf file is binary but lib used accepts a file path else: input_stream = open(args.input_file, "r") elif args.input_stdin: @@ -841,7 +843,7 @@ def parse_args(args): "xml", "covjson", "netcdf", - "imagcdf" + "imagcdf", ), default="edge", help='Input format (Default "edge")', -- GitLab