Skip to content

Commit

Permalink
Remove dead code (fixes #35) (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud authored Jul 3, 2020
1 parent 2db4ae8 commit 03e9628
Show file tree
Hide file tree
Showing 32 changed files with 0 additions and 1,062 deletions.
22 changes: 0 additions & 22 deletions arrow/commands/cannedcomments/addComment.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedcomments/deleteComment.py

This file was deleted.

17 changes: 0 additions & 17 deletions arrow/commands/cannedcomments/findAllComments.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedcomments/findCommentById.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedcomments/findCommentByValue.py

This file was deleted.

23 changes: 0 additions & 23 deletions arrow/commands/cannedcomments/updateComment.py

This file was deleted.

22 changes: 0 additions & 22 deletions arrow/commands/cannedkeys/addKey.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedkeys/deleteKey.py

This file was deleted.

17 changes: 0 additions & 17 deletions arrow/commands/cannedkeys/findAllKeys.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedkeys/findKeyById.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedkeys/findKeyByValue.py

This file was deleted.

23 changes: 0 additions & 23 deletions arrow/commands/cannedkeys/updateKey.py

This file was deleted.

22 changes: 0 additions & 22 deletions arrow/commands/cannedvalues/addValue.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedvalues/deleteValue.py

This file was deleted.

17 changes: 0 additions & 17 deletions arrow/commands/cannedvalues/findAllValues.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedvalues/findValueById.py

This file was deleted.

18 changes: 0 additions & 18 deletions arrow/commands/cannedvalues/findValueByValue.py

This file was deleted.

23 changes: 0 additions & 23 deletions arrow/commands/cannedvalues/updateValue.py

This file was deleted.

12 changes: 0 additions & 12 deletions arrow/commands/cmd_cannedcomments.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
import click
from arrow.commands.cannedcomments.addComment import cli as addComment
from arrow.commands.cannedcomments.add_comment import cli as add_comment
from arrow.commands.cannedcomments.deleteComment import cli as deleteComment
from arrow.commands.cannedcomments.delete_comment import cli as delete_comment
from arrow.commands.cannedcomments.findAllComments import cli as findAllComments
from arrow.commands.cannedcomments.findCommentById import cli as findCommentById
from arrow.commands.cannedcomments.findCommentByValue import cli as findCommentByValue
from arrow.commands.cannedcomments.get_comments import cli as get_comments
from arrow.commands.cannedcomments.show_comment import cli as show_comment
from arrow.commands.cannedcomments.updateComment import cli as updateComment
from arrow.commands.cannedcomments.update_comment import cli as update_comment


Expand All @@ -17,14 +11,8 @@ def cli():
pass


cli.add_command(addComment)
cli.add_command(add_comment)
cli.add_command(deleteComment)
cli.add_command(delete_comment)
cli.add_command(findAllComments)
cli.add_command(findCommentById)
cli.add_command(findCommentByValue)
cli.add_command(get_comments)
cli.add_command(show_comment)
cli.add_command(updateComment)
cli.add_command(update_comment)
Loading

0 comments on commit 03e9628

Please sign in to comment.