Skip to content

Commit

Permalink
chore: changes "in" to "is" in is_gitlab_ci comment
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Jul 28, 2023
1 parent c627213 commit 1db6089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trestlebot/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def create_pull_request(


def is_gitlab_ci() -> bool:
"""Determine if the environment in GitLab CI"""
"""Determine if the environment is GitLab CI"""
var_value = os.getenv("GITLAB_CI")
if var_value and var_value.lower() in ["true", "1"]:
return True
Expand Down

0 comments on commit 1db6089

Please sign in to comment.