Skip to content

Commit

Permalink
refactor: run formatter on changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Danyal-Faheem committed Jan 12, 2024
1 parent b39eb6c commit 17d0d6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutor/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from tutor.__about__ import __app__, __version__
from tutor.types import Config, ConfigValue

ref = files('tutor') / 'templates'
ref = files("tutor") / "templates"
with as_file(ref) as path:
TEMPLATES_ROOT = str(path)
VERSION_FILENAME = "version"
Expand Down
2 changes: 1 addition & 1 deletion tutor/plugins/v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _discover_entrypoint_plugins() -> None:
"""
with hooks.Contexts.PLUGINS.enter():
if "TUTOR_IGNORE_ENTRYPOINT_PLUGINS" not in os.environ:
for entrypoint in entry_points().select(group='tutor.plugin.v1'): # type: ignore[no-untyped-call]
for entrypoint in entry_points().select(group="tutor.plugin.v1"): # type: ignore[no-untyped-call]
discover_package(entrypoint)


Expand Down

0 comments on commit 17d0d6c

Please sign in to comment.