Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos in documentation #2024

Merged
merged 3 commits into from
Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parsl/app/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def reraise(self) -> None:

R = TypeVar('R')

# There appears to be no solutio to typing this without a mypy plugin.
# There appears to be no solution to typing this without a mypy plugin.
# The reason is because wrap_error maps a Callable[[X...], R] to a Callable[[X...], Union[R, R2]].
# However, there is no provision in Python typing for pattern matching all possible types of
# callable arguments. This is because Callable[] is, in the infinite wisdom of the typing module,
Expand Down
2 changes: 1 addition & 1 deletion parsl/data_provider/globus.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_globus():
class Globus(object):
"""
All communication with the Globus Auth and Globus Transfer services is enclosed
in the Globus class. In particular, the Globus class is reponsible for:
in the Globus class. In particular, the Globus class is responsible for:
- managing an OAuth2 authorizer - getting access and refresh tokens,
refreshing an access token, storing to and retrieving tokens from
.globus.json file,
Expand Down