41a6299 Format code base with black

Authored and Committed by hlin 4 years ago
84 files changed. 5772 lines added. 3349 lines removed.
pungi/__init__.py
file modified
+11 -6
pungi/arch.py
file modified
+10 -6
pungi/arch_utils.py
file modified
+17 -28
pungi/checks.py
file modified
+348 -542
pungi/common.py
file modified
+3 -2
pungi/compose.py
file modified
+117 -58
pungi/compose_metadata/discinfo.py
file modified
+5 -2
pungi/config.py
file modified
+43 -36
pungi/createiso.py
file modified
+42 -25
pungi/dnf_wrapper.py
file modified
+22 -9
pungi/gather.py
file modified
+787 -414
pungi/gather_dnf.py
file modified
+168 -92
pungi/graph.py
file modified
+4 -1
pungi/ks.py
file modified
+22 -6
pungi/linker.py
file modified
+26 -7
pungi/media_split.py
file modified
+4 -1
pungi/metadata.py
file modified
+198 -41
pungi/multilib_dnf.py
file modified
+11 -8
pungi/multilib_yum.py
file modified
+34 -9
pungi/notifier.py
file modified
+35 -32
pungi/ostree/__init__.py
file modified
+119 -53
pungi/ostree/installer.py
file modified
+3 -3
pungi/ostree/tree.py
file modified
+27 -21
pungi/ostree/utils.py
file modified
+23 -21
pungi/paths.py
file modified
+140 -50
pungi/phases/__init__.py
file modified
+1 -1
pungi/phases/base.py
file modified
+32 -18
pungi/phases/buildinstall.py
file modified
+145 -75
pungi/phases/createiso.py
file modified
+130 -65
pungi/phases/createrepo.py
file modified
+103 -56
pungi/phases/extra_files.py
file modified
+20 -10
pungi/phases/extra_isos.py
file modified
+71 -45
pungi/phases/gather/__init__.py
file modified
+183 -91
pungi/phases/gather/link.py
file modified
+58 -11
pungi/phases/gather/method.py
file modified
+0 -1
pungi/phases/gather/methods/method_deps.py
file modified
+103 -35
pungi/phases/gather/methods/method_hybrid.py
file modified
+11 -3
pungi/phases/gather/methods/method_nodeps.py
file modified
+57 -37
pungi/phases/gather/source.py
file modified
+0 -1
pungi/phases/gather/sources/source_comps.py
file modified
+1 -1
pungi/phases/image_build.py
file modified
+128 -86
pungi/phases/image_checksum.py
file modified
+54 -22
pungi/phases/init.py
file modified
+23 -10
pungi/phases/live_images.py
file modified
+142 -72
pungi/phases/livemedia_phase.py
file modified
+89 -68
pungi/phases/osbs.py
file modified
+76 -58
pungi/phases/ostree.py
file modified
+84 -55
pungi/phases/ostree_installer.py
file modified
+91 -55
pungi/phases/phases_metadata.py
file modified
+7 -3
pungi/phases/pkgset/__init__.py
file modified
+2 -0
pungi/phases/pkgset/pkgsets.py
file modified
+93 -43
pungi/phases/pkgset/sources/source_koji.py
file modified
+64 -32
pungi/phases/pkgset/sources/source_repos.py
file modified
+34 -13
pungi/phases/test.py
file modified
+51 -30
pungi/phases/weaver.py
file modified
+11 -2
pungi/profiler.py
file modified
+4 -2
pungi/runroot.py
file modified
+26 -8
pungi/scripts/comps_filter.py
file modified
+69 -26
pungi/scripts/config_validate.py
file modified
+22 -17
pungi/scripts/create_unified_isos.py
file modified
+1 -4
pungi/scripts/fedmsg_notification.py
file modified
+5 -5
pungi/scripts/patch_iso.py
file modified
+23 -15
pungi/scripts/pungi.py
file modified
+287 -123
pungi/scripts/pungi_gather.py
file modified
+13 -23
pungi/scripts/pungi_koji.py
file modified
+114 -58
pungi/scripts/report_progress.py
file modified
+1 -1
pungi/scripts/wait_for_signed_ostree_handler.py
file modified
+11 -11
pungi/util.py
file modified
+178 -116
pungi/wrappers/comps.py
file modified
+53 -25
pungi/wrappers/createrepo.py
file modified
+43 -9
pungi/wrappers/fus.py
file modified
+2 -7
pungi/wrappers/iso.py
file modified
+84 -50
pungi/wrappers/jigdo.py
file modified
+3 -1
pungi/wrappers/kojiwrapper.py
file modified
+219 -94
pungi/wrappers/lorax.py
file modified
+46 -16
pungi/wrappers/pungi.py
file modified
+87 -29
pungi/wrappers/repoclosure.py
file modified
+17 -9
pungi/wrappers/scm.py
file modified
+73 -31
pungi/wrappers/variants.py
file modified
+84 -35
pungi_utils/orchestrator.py
file modified
+9 -6
pungi_utils/patch_iso.py
file modified
+39 -30
pungi_utils/unified_isos.py
file modified
+139 -75
setup.py
file modified
+35 -49
tox.ini
file modified
+2 -2
    Format code base with black
    
    https://black.readthedocs.io/en/stable/
    
    JIRA: COMPOSE-4086
    Signed-off-by: Haibo Lin <hlin@redhat.com>
    
        
file modified
+11 -6
file modified
+10 -6
file modified
+17 -28
file modified
+348 -542
file modified
+3 -2
file modified
+117 -58
file modified
+43 -36
file modified
+42 -25
file modified
+22 -9
file modified
+787 -414
file modified
+168 -92
file modified
+4 -1
file modified
+22 -6
file modified
+26 -7
file modified
+4 -1
file modified
+198 -41
file modified
+11 -8
file modified
+34 -9
file modified
+35 -32
file modified
+119 -53
file modified
+3 -3
file modified
+27 -21
file modified
+23 -21
file modified
+140 -50
file modified
+1 -1
file modified
+32 -18
file modified
+145 -75
file modified
+130 -65
file modified
+103 -56
file modified
+20 -10
file modified
+71 -45
file modified
+183 -91
file modified
+58 -11
file modified
+128 -86
file modified
+54 -22
file modified
+23 -10
file modified
+142 -72
file modified
+89 -68
file modified
+76 -58
file modified
+84 -55
file modified
+93 -43
file modified
+51 -30
file modified
+11 -2
file modified
+4 -2
file modified
+26 -8
file modified
+69 -26
file modified
+23 -15
file modified
+287 -123
file modified
+13 -23
file modified
+114 -58
file modified
+178 -116
file modified
+53 -25
file modified
+43 -9
file modified
+2 -7
file modified
+84 -50
file modified
+3 -1
file modified
+219 -94
file modified
+46 -16
file modified
+87 -29
file modified
+17 -9
file modified
+73 -31
file modified
+84 -35
file modified
+9 -6
file modified
+39 -30
file modified
+139 -75
file modified
+35 -49
file modified
+2 -2