Skip to content

Commit

Permalink
Merge pull request #38 from frangiz/issue-5-classes-docstrings
Browse files Browse the repository at this point in the history
Issue #5: Added some docstrings for the new classes.
  • Loading branch information
Zarad1993 authored Oct 8, 2019
2 parents 2284c8c + 1bd27a3 commit 795ba5f
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 795ba5f

Please sign in to comment.