Skip to content

Commit

Permalink
Refactor CLI calls into repokid.commands module (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksanders committed Jul 16, 2020
1 parent 7852827 commit 4ba6d54
Show file tree
Hide file tree
Showing 24 changed files with 1,707 additions and 1,513 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2014 Netflix, Inc.
Copyright 2020 Netflix, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions repokid/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017 Netflix, Inc.
# Copyright 2020 Netflix, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -20,7 +20,7 @@

import import_string

__version__ = "0.13.0"
__version__ = "0.14.0"


def init_config():
Expand Down Expand Up @@ -80,7 +80,7 @@ def init_logging():
return log


def _get_hooks(hooks_list):
def get_hooks(hooks_list):
"""
Output should be a dictionary with keys as the names of hooks and values as a list of functions (in order) to call
Expand Down
Loading

0 comments on commit 4ba6d54

Please sign in to comment.