Skip to content

Commit

Permalink
fix: fixed typos (#1847)
Browse files Browse the repository at this point in the history
* Fixed typos

* Another typo

Co-authored-by: fgvieira <filipe.garrett.vieira@regionh.dk>
  • Loading branch information
fgvieira and fgvieira committed Sep 9, 2022
1 parent 90ae449 commit a1e49b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit a1e49b6

Please sign in to comment.