From e6e0803d44a7b8954fdac78334a27c35adb1a006 Mon Sep 17 00:00:00 2001 From: gspetro-NOAA Date: Wed, 11 Sep 2024 15:26:42 -0400 Subject: [PATCH] fix line length --- ush/generate_FV3LAM_wflow.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ush/generate_FV3LAM_wflow.py b/ush/generate_FV3LAM_wflow.py index e08955ab5..8990f04c6 100755 --- a/ush/generate_FV3LAM_wflow.py +++ b/ush/generate_FV3LAM_wflow.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 """ -User interface to create an experiment directory consistent with the user-defined ``config.yaml`` file. +User interface to create an experiment directory consistent with the user-defined ``config.yaml`` +file. """ # pylint: disable=invalid-name @@ -43,7 +44,8 @@ def generate_FV3LAM_wflow( logfile: str = "log.generate_FV3LAM_wflow", debug: bool = False) -> str: """ - Sets up a forecast experiment and creates a workflow (according to the parameters specified in the configuration file) + Sets up a forecast experiment and creates a workflow (according to the parameters specified + in the configuration file) Args: ushdir (str) : The full path of the ``ush/`` directory where this script is located @@ -726,7 +728,8 @@ def generate_FV3LAM_wflow( def setup_logging(logfile: str = "log.generate_FV3LAM_wflow", debug: bool = False) -> None: """ Sets up logging, printing high-priority (INFO and higher) messages to screen and printing all - messages with detailed timing and routine info in the specified text file. If ``debug = True``, print all messages to both screen and log file. + messages with detailed timing and routine info in the specified text file. If ``debug = True``, + print all messages to both screen and log file. Args: logfile (str) : The name of the file where logging information is written