Skip to content

Commit

Permalink
PEP8 fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsjames committed Dec 20, 2023
1 parent 1a30aaa commit e67ebbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flamedisx/lz/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def ensure_repo(repo_name, repo_path, user=None, token=None):
user, token = ensure_token()
temp_folder = ''.join(random.choices(string.ascii_lowercase, k=8))
fd.run_command(f'git clone https://{user}:{token}'
f'@gitlab.com/{repo_name} {temp_folder}')
f'@gitlab.com/{repo_name} {temp_folder}')
fd.run_command(f'mv {temp_folder}/{repo_path} .')
fd.run_command(f'rm -r -f {temp_folder}')

Expand Down

0 comments on commit e67ebbc

Please sign in to comment.