Skip to content

Commit

Permalink
Correct type hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur-flam committed Jun 29, 2020
1 parent 38747f0 commit e616615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qaboard/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ def merge(src: Dict, dest: Dict) -> Dict:
except:
branch_ci_dir = Path()

commit_committer_name: str = user
commit_committer_name: Optional[str] = user
commit_committer_email: Optional[str] = None
commit_authored_datetime: Optional[str] = datetime.datetime.now(datetime.timezone.utc).isoformat()
commit_authored_datetime = datetime.datetime.now(datetime.timezone.utc).isoformat()
commit_message: Optional[str] = None
commit_parents: List[str] = []
if commit_id and is_in_git_repo:
Expand Down

0 comments on commit e616615

Please sign in to comment.