mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-22 21:00:44 +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 os
|
||||||
import re
|
import re
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"""Checks related to ansible roles files."""
|
||||||
|
|
||||||
from nested_lookup import nested_lookup
|
from nested_lookup import nested_lookup
|
||||||
|
|
||||||
from ansiblelater.command.candidates import Error, Result
|
from ansiblelater.command.candidates import Error, Result
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"""Checks related to generic YAML syntax (yamllint)."""
|
||||||
|
|
||||||
import codecs
|
import codecs
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"""Global utils collection."""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import contextlib
|
import contextlib
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"""Abstracted methods to simplify role writeup."""
|
||||||
|
|
||||||
import codecs
|
import codecs
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"""Utils for YAML file operations."""
|
||||||
|
|
||||||
# Copyright (c) 2013-2014 Will Thames <will@thames.id.au>
|
# Copyright (c) 2013-2014 Will Thames <will@thames.id.au>
|
||||||
#
|
#
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
Loading…
Reference in New Issue
Block a user