mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-22 04:40:42 +00:00
add some missing docstrings
This commit is contained in:
parent
46d1e35ece
commit
40acaa0b13
@ -0,0 +1 @@
|
||||
# noqa
|
@ -0,0 +1 @@
|
||||
# noqa
|
@ -1,3 +1,5 @@
|
||||
"""Checks related to ansible specific best practices."""
|
||||
|
||||
import os
|
||||
import re
|
||||
from collections import defaultdict
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Checks related to ansible roles files."""
|
||||
|
||||
from nested_lookup import nested_lookup
|
||||
|
||||
from ansiblelater.command.candidates import Error, Result
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Checks related to generic YAML syntax (yamllint)."""
|
||||
|
||||
import codecs
|
||||
import os
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Global utils collection."""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import contextlib
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Abstracted methods to simplify role writeup."""
|
||||
|
||||
import codecs
|
||||
from collections import defaultdict
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user