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: fixed typos #1847

Merged
merged 2 commits into from Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions snakemake/common/__init__.py
Expand Up @@ -23,7 +23,7 @@


MIN_PY_VERSION = (3, 7)
DYNAMIC_FILL = "__othernakemake_dynamic__"
DYNAMIC_FILL = "__snakemake_dynamic__"
SNAKEMAKE_SEARCHPATH = str(Path(__file__).parent.parent.parent)
UUID_NAMESPACE = uuid.uuid5(uuid.NAMESPACE_URL, "https://snakemake.readthedocs.io")
NOTHING_TO_BE_DONE_MSG = (
Expand Down Expand Up @@ -172,7 +172,7 @@ class Mode:


class lazy_property(property):
__otherlots__ = ["method", "cached", "__doc__"]
__slots__ = ["method", "cached", "__doc__"]

@staticmethod
def clean(instance, method):
Expand Down
2 changes: 1 addition & 1 deletion snakemake/io.py
Expand Up @@ -1065,7 +1065,7 @@ def pipe(value):
if is_flagged(value, "remote"):
raise SyntaxError("Pipes may not be remote files.")
if ON_WINDOWS:
logger.warning("Pipes is not yet supported on Windows.")
logger.warning("Pipes are not yet supported on Windows.")
return flag(value, "pipe", not ON_WINDOWS)


Expand Down