diff --git a/geomagio/Controller.py b/geomagio/Controller.py
index 41bffe20acf04e34835e751585944395901cff0f..186340565de598648c12d8127cce397396d86580 100644
--- a/geomagio/Controller.py
+++ b/geomagio/Controller.py
@@ -510,7 +510,10 @@ def get_input_factory(args):
                 input_stream = BytesIO(Util.read_url(args.input_url))
             except TypeError as e:
                 print(str(e), file=sys.stderr)
-                print("Warning: reading url as BytesIO failed; attempting StringIO", file=sys.stderr)
+                print(
+                    "Warning: reading url as BytesIO failed; attempting StringIO",
+                    file=sys.stderr,
+                )
                 input_stream = StringIO(Util.read_url(args.input_url))
     input_type = args.input
     if input_type == "edge":