Skip to content

Commit

Permalink
doc : version_check.py docstring modified #108
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Apr 24, 2019
1 parent 634fab1 commit 2858e31
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions opem/Dynamic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# -*- coding: utf-8 -*-
"""OPEM dynamic modules."""
8 changes: 8 additions & 0 deletions version_check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
"""Version-check script."""
import os
import sys
import codecs
Expand Down Expand Up @@ -44,6 +45,13 @@


def print_result(failed=False):
"""
Print final result.
:param failed: failed flag
:type failed: bool
:return: None
"""
message = "Version tag tests "
if not failed:
print("\n" + message + "passed!")
Expand Down

0 comments on commit 2858e31

Please sign in to comment.