Tomasz Trębski

Results 82 issues of Tomasz Trębski

If I understand Apache configuration correctly, `RewriteCond` or a lot of them are there to support when `RewriteRule` should happen. Would it make sense to provide have them grouped together?...

Hi there, I was recently thinking if there are any plans to add hateoas support in restagular ? For instance I am have some server side business logic that is...

enhancement

Hey, I cannot figure it out and just wanted to know how precedence works here. Say I have multiple files: ``` src/main/resources/application.properties src/main/resources/${env}.properties ``` and I want to use application.properties...

Consider following piece of code: ```python logger.info( 'Booting up worker', extra={'queue': queue_name}, ) ``` It is obviously flagged as: ```sh [mypy] Not all arguments converted during string formatting [str-format] [E]...

question

Ref: #6 Ref: https://github.com/python/mypy/issues/9010 This is basically an extension of what was implemented for #6. With `record=True` user can access special dictionary inside of a template. `record=False` basically means opposite...

feature_request

Taken from: #49 Code examples: ``` logger.debug(f'This is a test') # 1 logger.trace(f'Call from {__file__}') # 2 ``` Expected result: If `loguru-mypy` detects that it is dealing with `CallExpr` we...

feature_request

Taken from: #49 Code example: ``` from loguru import logger logger.info("foo" + "bar") ``` Expected result: `loguru-mypy` correctly detect what will be that final result of said operation and is...

feature_request

@ThibaultLemaire Recently I found `mypy.checkexpr.ExpressionChecker.check_str_format_call` method. I think that is basically what you did as part of #43, right? If that's exactly same thing would you mind replacing your code...

question

Here's a list of runtime thingies that caught us when working with loguru ;-). Thanks to @Delgan support we know two of those being #18 and #7 . I bet...

feature_request