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

[pre-commit.ci] pre-commit autoupdate #151

Merged
merged 2 commits into from
Apr 4, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: yamlfmt

- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.3.0
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
Expand All @@ -44,7 +44,7 @@ repos:
- id: setup-cfg-fmt

- repo: https://github.com/sirosen/check-jsonschema
rev: 0.19.2
rev: 0.22.0
hooks:
- id: check-github-workflows

Expand Down
1 change: 0 additions & 1 deletion home/app_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def render(self, _=None):


class AppStoreAppManagerWidget(AppManagerWidget):

TEMPLATE = Template(
"""<h2 style="text-align:center;">{{ app.title }}</h2>
<div style="font-size: 15px; font-style: italic">Description: {{ app.description | truncate(200) }}</div>
Expand Down
1 change: 0 additions & 1 deletion home/start_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def render(self):

with self.output:
for name in apps:

# Create app widget if it has not been created yet.
if name not in self._app_widgets:
self._app_widgets[name] = self._create_app_widget(name)
Expand Down
1 change: 0 additions & 1 deletion home/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def load_start_md(name):
"""Load app appearance from a Markdown file."""
fname = path.join(AIIDALAB_APPS, name, "start.md")
try:

md_src = open(fname).read()
md_src = md_src.replace("](./", "](../{}/".format(name))
html = markdown(md_src)
Expand Down
1 change: 0 additions & 1 deletion home/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ def _observe_enabled(self, change):


class LogOutputWidget(ipw.VBox):

value = traitlets.Unicode()
template = traitlets.Unicode()

Expand Down