-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,23 +17,24 @@ | |
# | ||
# Authors: Ralph Bean <[email protected]> | ||
|
||
from datetime import datetime, timezone | ||
|
||
# Python Standard Library Modules | ||
import difflib | ||
import logging | ||
import operator | ||
import re | ||
from datetime import datetime, timezone | ||
from typing import Optional | ||
|
||
# 3rd Party Modules | ||
import arrow | ||
import jinja2 | ||
from jira import JIRAError | ||
import jira.client | ||
import pypandoc | ||
from jira import JIRAError | ||
|
||
# Local Modules | ||
from sync2jira.intermediary import PR, Issue | ||
from sync2jira.intermediary import Issue, PR | ||
from sync2jira.mailer import send_mail | ||
|
||
# The date the service was upgraded | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ | |
# | ||
# Authors: Ralph Bean <[email protected]> | ||
|
||
import logging | ||
from copy import deepcopy | ||
import logging | ||
from urllib.parse import urlencode | ||
|
||
import requests | ||
from github import Github | ||
import requests | ||
|
||
import sync2jira.intermediary as i | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters