Update env.py - fix spacing

This commit is contained in:
JesseBot 2023-05-19 23:15:45 +02:00 committed by GitHub
parent 485032da51
commit d9ce6b0d6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -15,10 +15,9 @@ def environment(pl, segment_info, variable=None):
:param string variable:
The environment variable to return if found
'''
return [{
return [{
'contents': segment_info['environ'].get(variable, None),
'highlight_groups': ['environment_variable'],
'highlight_groups': ['environment_variable']
}]