Skip to content

Commit

Permalink
Merge pull request #1410 from fetchai/refactor/generator
Browse files Browse the repository at this point in the history
Generator refactoring
  • Loading branch information
DavidMinarsch authored Jun 24, 2020
2 parents 925bf26 + 65cc583 commit 394d491
Show file tree
Hide file tree
Showing 7 changed files with 634 additions and 471 deletions.
2 changes: 1 addition & 1 deletion aea/cli/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
PublicId,
)
from aea.configurations.loader import ConfigLoader
from aea.protocols.generator import ProtocolGenerator
from aea.protocols.generator.base import ProtocolGenerator


@click.group()
Expand Down
20 changes: 20 additions & 0 deletions aea/protocols/generator/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2018-2019 Fetch.AI Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ------------------------------------------------------------------------------

"""This package contains the protocol generator modules."""
Loading

0 comments on commit 394d491

Please sign in to comment.