mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
using the following command: ``` autopep8 -i -r --exclude $(sed -e 's|^|./|' -e 's|/$||' .ci/flake8_blacklist.txt | paste -sd,) --select E201,E202 . ```
12 lines
188 B
Python
12 lines
188 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copies LAV file over to new file for use with LAJ
|
|
"""
|
|
import shutil
|
|
import sys
|
|
|
|
assert sys.version_info[:2] >= (2, 4)
|
|
|
|
shutil.copyfile(sys.argv[1], sys.argv[2])
|