Skip to content

Commit 8a4bd43

Browse files
authored
Merge pull request #203 from nicolasbock/docstrings
Add docstrings
2 parents 4bb39b4 + 3a9cab4 commit 8a4bd43

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

ebuildtester/docker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""The Docker backend."""
2+
13
import os
24
import re
35
import sys

ebuildtester/main.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
"""The main function."""
2+
3+
import os.path
4+
import sys
5+
16
from ebuildtester.docker import Docker, ExecuteFailure
27
from ebuildtester.parse import parse_commandline
38
import ebuildtester.options as options
4-
import os.path
5-
import sys
69

710

811
def main():

ebuildtester/parse.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
from ebuildtester.atom import Atom
1+
"""Parse command line options."""
2+
23
import os
3-
from pkg_resources import get_distribution
44
import argparse
55
import multiprocessing
6+
from pkg_resources import get_distribution
7+
8+
from ebuildtester.atom import Atom
69

710

811
def parse_commandline(args):

0 commit comments

Comments
 (0)