Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit db9cda0

Browse files
author
Olivier Gambier
committed
Fix python 2.6 linting
argparse is a third-party library on python 2.6, making hacking to fail. Docker-DCO-1.1-Signed-off-by: Olivier Gambier <[email protected]> (github: dmp42)
1 parent 8932d2b commit db9cda0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker_registry/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
from __future__ import print_function
44

5-
import argparse
5+
import argparse # noqa
6+
67
import distutils.spawn
78
import getpass
89
import logging

0 commit comments

Comments
 (0)