Mahdi Mohaveri
Mahdi Mohaveri
The current master does not work with Tensorflow 2.0 because it's using a set of deprecated APIs. This PR will replace those deprecated APIs with the ones from "tf.compat.v1".
`__eq__`'s type hint for primitives accept `object` while in many cases it returns `NotImplemented`
As can be seen in [builtins.pyi](https://github.com/python/typeshed/blob/master/stdlib/builtins.pyi), all primitives are defining their `__eq__` and `__ne__` functions in the following manner: ```python def __eq__(self, __x: object) -> bool: ... def __ne__(self, __x:...
**Is your feature request related to a problem? Please describe.** I use flatpak to manage my applications on my Debian machine, but Kreya does not provide any flatpak. **Describe the...
### Initial Checks - [X] I have searched GitHub for a duplicate issue and I'm sure this is something new - [X] I have searched Google & StackOverflow for a...
### Description I'm using Connextion 3 ASGI app. There, connextion.request in a wrapper around starlette's request and I can access any starlette's request info I want using it, e.g: `connextion.request.headers`....
Hi, We have a case that if the bandwidth of our outline server exceeds 10GB/s it will get banned by authorities. We need a feature to limit the bandwidth of...