Skip to content

Commit

Permalink
Fix implicit optional (MDAnalysis#3920)
Browse files Browse the repository at this point in the history
* fix implicit optional
* turn off cron CI on PR
  • Loading branch information
IAlibay authored Nov 11, 2022
1 parent 6444031 commit fc9dee0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/gh-ci-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ on:
schedule:
# 3 am Tuesdays and Fridays
- cron: "0 3 * * 2,5"
pull_request:
branches:
- develop

concurrency:
# Probably overly cautious group naming.
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/pkdtree.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PeriodicKDTree(object):
"""

def __init__(self, box: npt.ArrayLike = None, leafsize: int = 10) -> None:
def __init__(self, box: Optional[npt.ArrayLike] = None, leafsize: int = 10) -> None:
"""
Parameters
Expand Down

0 comments on commit fc9dee0

Please sign in to comment.