Skip to content

Commit

Permalink
Remove unnecessary str()
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReverend403 committed Feb 26, 2024
1 parent 289293c commit adb47d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pste/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def register_assets(app):
assets.directory = app.static_folder
assets.auto_build = app.debug or app.testing
assets.append_path(paths.ASSETS)
assets.config["LIBSASS_INCLUDES"] = [str(paths.NODE_MODULES.absolute())]
assets.config["LIBSASS_INCLUDES"] = [paths.NODE_MODULES.absolute()]

for name, bundle in bundles.items():
assets.register(name, bundle)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pste"
version = "0.7.7"
version = "0.7.8"
description = "Just a simple file hosting application inspired by the likes of pomf.se and teknik.io."
authors = ["Lee Watson <me@lwatson.dev>"]
license = "GPL-3.0+"
Expand Down

0 comments on commit adb47d2

Please sign in to comment.