Skip to content

Commit

Permalink
Issue #5: Added some docstrings for the new classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
frangiz committed Oct 2, 2019
1 parent 95585ab commit 1bd27a3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dyc/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
Base file that contains the core classes that are used in dyc.
"""
import fileinput
from .utils import all_files_generator, get_file_lines

Expand Down
4 changes: 4 additions & 0 deletions dyc/dyc.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
This file gets configuration from parser.ParsedConfig
and handles all the commands from the command line.
"""
import click
from .parser import ParsedConfig
from .main import DYC
Expand Down
5 changes: 5 additions & 0 deletions dyc/events.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
This file contains all the event classes used in dyc. It contains
a Watcher that watches files for changes and a WatchEvent that
triggers if a file is changed.
"""
import sys
import time
import logging
Expand Down
5 changes: 5 additions & 0 deletions dyc/methods.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
File for classes that handles the actual business logic of
the application. Here is the the place where the actual reading,
parsing and validation of the files happens.
"""
import sys
import re
import fileinput
Expand Down

0 comments on commit 1bd27a3

Please sign in to comment.