Skip to content

Commit

Permalink
Moved file.
Browse files Browse the repository at this point in the history
Signed-off-by: dblock <dblock@dblock.org>
  • Loading branch information
dblock committed Sep 14, 2021
1 parent 791d28a commit b564887
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bundle-workflow/src/manifests.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

import logging

from manifests.manifests import Manifests
from manifests_workflow.input_manifests import InputManifests
from manifests_workflow.manifests_args import ManifestsArgs
from system import console

args = ManifestsArgs()
console.configure(level=args.logging_level)
manifests = Manifests()
manifests = InputManifests()

if args.action == "list":
for manifest in manifests.values():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
from system.temporary_directory import TemporaryDirectory


class Manifests(SortedDict):
class InputManifests(SortedDict):
def __init__(self):
super(Manifests, self).__init__()
super(InputManifests, self).__init__()
self.__discover()

@property
Expand All @@ -37,7 +37,7 @@ def __discover(self):
if match:
version = match.group(1)
manifest = InputManifest.from_path(filename)
logging.debug(f"Loaded {version} ({manifest.to_int()}) from {filename}")
logging.debug(f"Loaded {version} from {filename}")
self.__setitem__(version, manifest)

@property
Expand Down

0 comments on commit b564887

Please sign in to comment.