Skip to content

Commit

Permalink
reorganize CompileMultiPycAction attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhelmus committed Dec 7, 2018
1 parent 7b86bf4 commit fe22f04
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conda/core/path_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,11 +548,10 @@ def create_actions(cls, transaction_context, package_info, target_prefix, reques
def __init__(self, transaction_context, package_info, target_prefix,
source_short_paths, target_short_paths):
self.transaction_context = transaction_context
self.target_prefix = target_prefix
self.target_short_paths = target_short_paths
self.package_info = package_info
self.source_prefix = source_prefix
self.target_prefix = target_prefix
self.source_short_paths = source_short_paths
self.target_short_paths = target_short_paths
self.prefix_path_data = None
self.prefix_paths_data = [
PathDataV1(_path=p, path_type=PathType.pyc_file,) for p in self.target_short_paths]
Expand Down

0 comments on commit fe22f04

Please sign in to comment.