Skip to content

Commit

Permalink
🎅 core-js update
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerteltier committed Dec 1, 2023
1 parent 489a5ac commit 0031410
Show file tree
Hide file tree
Showing 12 changed files with 152 additions and 304 deletions.
3 changes: 1 addition & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \
PYCURL_SSL_LIBRARY=gnutls \
PIP_NO_CACHE_DIR=1 \
RUSTC_BOOTSTRAP=1
ARG AIOHTTP_NO_EXTENSIONS=1 \
FROZENLIST_NO_EXTENSIONS=1
ARG AIOHTTP_NO_EXTENSIONS=1
COPY pip-requirements.txt .
RUN set -eux \
&& . $HOME/.cargo/env \
Expand Down
2 changes: 1 addition & 1 deletion an_website/backdoor/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ def send_to_remote(code: str, *, mode: str) -> Any:
)

# pylint: disable=import-outside-toplevel, import-error, useless-suppression
from pyrepl.python_reader import ( # type: ignore[import-not-found]
from pyrepl.python_reader import ( # type: ignore[import, unused-ignore]
ReaderConsole,
)
from pyrepl.python_reader import main as _main
Expand Down
2 changes: 1 addition & 1 deletion an_website/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
)

try:
import perf8 # type: ignore[import-not-found]
import perf8 # type: ignore[import, unused-ignore]
except ModuleNotFoundError:
perf8 = None # pylint: disable=invalid-name

Expand Down
2 changes: 1 addition & 1 deletion an_website/patches/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

with suppress(ModuleNotFoundError):
# pylint: disable=import-error, useless-suppression
from jxlpy import ( # type: ignore[import-not-found] # noqa: F401
from jxlpy import ( # type: ignore[import, unused-ignore] # noqa: F401
JXLImagePlugin,
)

Expand Down
2 changes: 1 addition & 1 deletion an_website/quotes/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
)

try:
from unexpected_isaves.save_image import ( # type: ignore[import-not-found]
from unexpected_isaves.save_image import ( # type: ignore[import, unused-ignore]
to_excel,
)
except ModuleNotFoundError:
Expand Down
2 changes: 1 addition & 1 deletion an_website/static/js/vendored/vanilla.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions an_website/static/js/vendored/vanilla.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions an_website/static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
],
"name": "Das Asoziale Netzwerk",
"scope": "../",
"short_name": "Asozial.org",
"start_url": "/",
"theme_color": "#A00000"
}
Loading

0 comments on commit 0031410

Please sign in to comment.