@@ -18,20 +18,20 @@ mkIssue (Issue n t h) = hsep [
1818 fill 5 (text (show h))]
1919
2020vissues :: ([Doc ], [Doc ], [Doc ]) -> Doc
21- vissues (x, y, z) = hsep [(vcat x), align (vcat y), align (vcat z)]
21+ vissues (x, y, z) = hsep [(vcat x), align (vcat y), align (vcat z)]
2222
2323mkDoc :: Report -> Doc
2424mkDoc (Report issues total) = vsep [
2525 text " Report for the milestone" ,
26- (vsep . map mkIssue) issues,
26+ (vsep . map mkIssue) issues,
2727 text (" Total hours : " ++ (show total) ++ " hours" )
2828 ]
2929
3030mkFullDoc :: [Github. Issue ] -> Doc
3131mkFullDoc = mkDoc . prepareReport
3232
3333-- The public repo is used as private are quite sensitive for this report
34- --
34+ --
3535-- The main idea is to use labels like 1h, 2h etc for man-hour estimation of issues
3636-- on private repos for development "on hire"
3737--
@@ -43,4 +43,4 @@ main = do
4343 possibleIssues <- Github. issuesForRepo' auth " paulrzcz" " hquantlib" limitations
4444 case possibleIssues of
4545 (Left err) -> putStrLn $ " Error: " ++ show err
46- (Right issues) -> putDoc $ mkFullDoc issues
46+ (Right issues) -> putDoc $ mkFullDoc issues
0 commit comments