add some missing docstrings

This commit is contained in:
Robert Kaussow 2019-04-10 14:50:48 +02:00
parent 46d1e35ece
commit 40acaa0b13
8 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1 @@
# noqa

View File

@ -0,0 +1 @@
# noqa

View File

@ -1,3 +1,5 @@
"""Checks related to ansible specific best practices."""
import os
import re
from collections import defaultdict

View File

@ -1,3 +1,5 @@
"""Checks related to ansible roles files."""
from nested_lookup import nested_lookup
from ansiblelater.command.candidates import Error, Result

View File

@ -1,3 +1,5 @@
"""Checks related to generic YAML syntax (yamllint)."""
import codecs
import os

View File

@ -1,3 +1,5 @@
"""Global utils collection."""
from __future__ import print_function
import contextlib

View File

@ -1,3 +1,5 @@
"""Abstracted methods to simplify role writeup."""
import codecs
from collections import defaultdict

View File

@ -1,3 +1,5 @@
"""Utils for YAML file operations."""
# Copyright (c) 2013-2014 Will Thames <will@thames.id.au>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy