Skip to content

Commit 51ad7f4

Browse files
committed
black
1 parent 1530e27 commit 51ad7f4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dlclive/check_install/check_install.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def main():
2222
os.chdir(tmp_dir)
2323

2424
# download dog test video from github:
25-
url_link = 'https://github.com/DeepLabCut/DeepLabCut-live/blob/master/check_install/dog_clip.avi?raw=True'
26-
urllib.request.urlretrieve(url_link,"dog_clip.avi")
27-
video_file=os.path.join(url_link,"dog_clip.avi")
28-
25+
url_link = "https://github.com/DeepLabCut/DeepLabCut-live/blob/master/check_install/dog_clip.avi?raw=True"
26+
urllib.request.urlretrieve(url_link, "dog_clip.avi")
27+
video_file = os.path.join(url_link, "dog_clip.avi")
28+
2929
# download exported dog model from DeepLabCut Model Zoo
3030
print("Downloading full_dog model from the DeepLabCut Model Zoo...")
3131
model_url = "http://deeplabcut.rowland.harvard.edu/models/DLC_Dog_resnet_50_iteration-0_shuffle-0.tar.gz"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
python_requires=">=3.5, <3.8",
4848
install_requires=install_requires,
4949
packages=setuptools.find_packages(),
50-
package_data={'dlclive': ['check_install/*']},
50+
package_data={"dlclive": ["check_install/*"]},
5151
include_package_data=True,
5252
classifiers=(
5353
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)