Skip to content

Commit

Permalink
context
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoggins committed Dec 13, 2021
1 parent 3de021d commit b4c1ab5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workers/github_worker/github_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ def __init__(self, config={}):
# Run the general worker initialization
super().__init__(worker_type, config, given, models, data_tables, operations_tables)

def is_nan(value):
return type(value) == float and math.isnan(value)

def _get_pk_source_issues(self):

issues_url = (
Expand Down Expand Up @@ -526,6 +523,9 @@ def issue_nested_data_model(self, pk_source_issues, issue_events_all):

self.logger.info("Entering Assignee's.")

def is_nan(value):
return type(value) == float and math.isnan(value)

for issue in pk_source_issues:

self.logger.debug(f"on issue: there are {len(pk_source_issues)} issues total. Editing assignee next.")
Expand Down

0 comments on commit b4c1ab5

Please sign in to comment.