Lucas
Lucas
Hi! In my `main.ts` file, I have: ``` import 'element-theme-default' ; ``` and in my `webpack.config.prod.js`: ``` const extractCss = new ExtractTextPlugin ( { filename: 'css/[name].[contenthash]-first.css', disable: process.env.NODE_ENV === 'development'...
Looking at the `node.py` implementation: ```py class NodeField(Field): def __init__(self, node, type=False, deprecation_reason=None, name=None, **kwargs): assert issubclass(node, Node), "NodeField can only operate in Nodes" self.node_type = node self.field_type = type...
_Disclaimer: As I am pretty unfamiliar with the Jupytext codebase, this proposal may come across as poorly implemented. Before spending time devising a better implementation and adding tests, I'd like...
Before I submit a PR, would the maintainer be open to allowing the following construct? ```py ttl = env.timedelta("TTL", default=600) # Currently works ttl = env.timedelta("TTL", default=timedelta(minutes=10)) # Raises `environs.EnvValidationError`...
Hi there! Very nice tool, thanks! Would this this library also work with Django's `JsonResponse`? According to Django's doc: https://docs.djangoproject.com/en/2.0/ref/request-response/#jsonresponse-objects an encoder can be set. ```py response = JsonResponse(data, encoder=MyJSONEncoder)...
A conservative approach has been taken, by sanitizing inputs and validating object internal states using their respective `isDefined` methods. Although this has the advantage of catching bugs early in the...
The following deprecation warning gets emitted when using Python 3.11: ``` /home/vscode/.local/lib/python3.11/site-packages/revproxy/views.py:201: DeprecationWarning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTPResponse.headers directly. proxy_response.getheaders()) ```
First uneducated attempt to support https://github.com/PyCQA/isort/issues/2104
Only reduced (sub-metric) precision has been tested... could (should) be improved. In [LLA.test.cpp:](https://github.com/open-space-collective/library-physics/blob/dev%40lucas/test/Library/Physics/Coordinate/Spherical/LLA.test.cpp) - `Library_Physics_Coordinate_Spherical_LLA.ToCartesian` - `Library_Physics_Coordinate_Spherical_LLA.Cartesian`
The following tests have been temporarily disabled: - `Library_Astrodynamics_Trajectory_Orbit_Models_Kepler.Test_2` - `Library_Astrodynamics_Trajectory_Orbit.SunSynchronous` - `Library_Astrodynamics_Access_Generator.AerRanges` Re-enable them and make sure they pass before releasing anything.