Skip to content

Commit

Permalink
chores: pylint line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila committed Sep 3, 2023
1 parent 7b11459 commit e4f474d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rqd/rqd/rqconstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

# Use the PATH environment variable from the RQD host.
RQD_USE_PATH_ENV_VAR = False
# Copy specific environment variable from the RQD host to the frame env (it is isolated from the system).
# Copy specific environment variable from the RQD host to the frame env.
RQD_HOST_ENV_VARS = []

RQD_BECOME_JOB_USER = True
Expand Down Expand Up @@ -194,7 +194,8 @@
if config.has_option(__override_section, "RQD_USE_IP_AS_HOSTNAME"):
RQD_USE_IP_AS_HOSTNAME = config.getboolean(__override_section, "RQD_USE_IP_AS_HOSTNAME")
if config.has_option(__override_section, "RQD_USE_IPV6_AS_HOSTNAME"):
RQD_USE_IPV6_AS_HOSTNAME = config.getboolean(__override_section, "RQD_USE_IPV6_AS_HOSTNAME")
RQD_USE_IPV6_AS_HOSTNAME = config.getboolean(__override_section,
"RQD_USE_IPV6_AS_HOSTNAME")
if config.has_option(__override_section, "RQD_USE_PATH_ENV_VAR"):
RQD_USE_PATH_ENV_VAR = config.getboolean(__override_section, "RQD_USE_PATH_ENV_VAR")
if config.has_option(__override_section, "RQD_BECOME_JOB_USER"):
Expand Down

0 comments on commit e4f474d

Please sign in to comment.