Skip to content

Commit

Permalink
Bump version to dev28
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrachuk committed Dec 25, 2019
1 parent 178766f commit 1706c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lightweight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .path import RenderPath, Rendering
from .template import template

__version__ = '1.0.0.dev27'
__version__ = '1.0.0.dev28'
2 changes: 1 addition & 1 deletion lightweight/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def include(self, path: str, content: Content = None):
else:
self._include(path, content, cwd)

def _include(self, path, content, cwd):
def _include(self, path: str, content: Content, cwd: str):
if path in self:
raise IncludedDuplicate()
self.content.append(IncludedContent(path, content, cwd))
Expand Down

0 comments on commit 1706c5a

Please sign in to comment.