PIP8 alignment

Signed-off-by: Adam Harvey <adam.harvey@dxc.com>
This commit is contained in:
Adam Harvey
2021-03-17 11:23:08 -04:00
parent 2ef9ac9d83
commit 9b3a205303
@@ -24,8 +24,8 @@ const DefaultEntityPage = ({ entity }: { entity: Entity }) => (
Here is an example of Python code:
```python
def getUsersInGroup( targetGroup, secure = False ):
def getUsersInGroup(targetGroup, secure=False):
if __debug__:
print ('targetGroup=[' + targetGroup + ']')
print('targetGroup=[' + targetGroup + ']')
```