From 887f77dad545d36eb19c6306f371e444bfd15b73 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Thu, 13 Jul 2023 09:48:40 -0700 Subject: [PATCH] Fix whitespace issues found by flake8 6 --- python/lsst/display/firefly/firefly.py | 2 +- python/lsst/display/firefly/footprints.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/display/firefly/firefly.py b/python/lsst/display/firefly/firefly.py index 1b6f6c6..3f71911 100644 --- a/python/lsst/display/firefly/firefly.py +++ b/python/lsst/display/firefly/firefly.py @@ -49,7 +49,7 @@ def __init__(self, str): def firefly_version(): """Return the version of firefly_client in use, as a string""" - return(firefly_client.__version__) + return firefly_client.__version__ class DisplayImpl(virtualDevice.DisplayImpl): diff --git a/python/lsst/display/firefly/footprints.py b/python/lsst/display/firefly/footprints.py index 1d79099..76aa4b5 100644 --- a/python/lsst/display/firefly/footprints.py +++ b/python/lsst/display/firefly/footprints.py @@ -192,4 +192,4 @@ def createFootprintsTable(catalog, xy0=None, insertColumn=4): outTable._config['version_1_3_or_later'] = True outputVO.set_all_tables_format('binary2') - return(outputVO) + return outputVO