Ionite
Ionite
Closes #2217, Closes #2130 ## Overview > Fixes the issue of displayed infractions being off from the originally requested duration. - Implements new infraction duration calculations using a `last_applied` time...
## Summary This is a proposal to extend the `AntiMalware` cog to automatically submit file links and attachments to the VirusTotal API for testing. https://developers.virustotal.com/reference/overview The public API allows up...
## Description Infraction messages (such as temp-mute) currently display a time that is almost always 1 least-significant unit less than the requested time. ## Examples ### `1 hour` -> `59...
## Adding a Rickroll Detection command ### Possible forms: ### 1. Command Syntax: `.rolldet ` - Can also reply to a link instead of providing as argument ### 2. Continuous...
As seen below, using the fossa-cli to generate reports with an existing project that was added through the Fossa - Github web interface: fossa-cli generates a new project and does...
Fixes #50 This fixes the incorrect type hint, changed from `None` to `Any` ```diff - async def execute_async(self) -> None: + async def execute_async(self) -> Any: ```
https://github.com/kazhala/InquirerPy/blob/master/InquirerPy/base/simple.py#L341-L355 The `execute_async` function has been incorrectly hinted to return `None`, when all the return paths actually return `Any`, as returned by `await self._run_async()` ```py async def execute_async(self) -> None:...
# Issue The original statement (at line 115 of [numbers.py](PyTorch/SpeechSynthesis/FastPitch/common/text/numerical.py)) of: ```python if number > 1000 < 10000 and (number % 100 == 0) and (number % 1000 != 0):...
Current working command schemes: - `!eval -ipython` - `!e -i` Support IPython mode for eval with code blocks as "cells". Matplotlib will use a custom backend for `show()` which writes...
## Proposal to add a `!mypy` command Works like `!eval` or `!timeit` but instead of running the file, run a mypy type check on the file using snekbox and return...