text stringlengths 20 57.3k | labels class label 4
classes |
|---|---|
Title: print_exception: rewrite deprecated code
Body: We have this line:
https://github.com/xonsh/xonsh/blob/55b341d47753967c70a4dcf9ff30690877f66048/xonsh/tools.py#L1056-L1058
But https://docs.python.org/3/library/sys.html:
> These three variables are deprecated;
> sys.last_type
> sys.last_value
> sys.las... | 0easy |
Title: Populate FAQ
Body: Right now it does not have much | 0easy |
Title: Refactor autonames test to include fixture right inside the test, not fixture
Body: Related: https://github.com/wemake-services/django-test-migrations/pull/34#pullrequestreview-365115366 | 0easy |
Title: for deep learning, sort feature_responses by magnitude of effect
Body: | 0easy |
Title: [nlp_data] Add CC-100
Body: ## Description
Add the CC-100 corpus that can be used for pretraining to `nlp_data`.
http://data.statmt.org/cc-100/
| 0easy |
Title: Handlers for resuming only unmodified/idling/sleeping resources
Body: > <a href="https://github.com/nolar"><img align="left" height="50" src="https://avatars0.githubusercontent.com/u/544296?v=4"></a> An issue by [nolar](https://github.com/nolar) at _2019-11-18 20:48:46+00:00_
> Original URL: https://githu... | 0easy |
Title: Upgrade to v2.0 of the Contributor Covenant code of conduct
Body: An updated version is available here: https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md
We currently use v1.4, and there are some nice changes and clarifications in v2.0. | 0easy |
Title: Parallelize and speed up /index custom index commands
Body: Currently, we are using the gpt-index package to power the functionality behind /index commands. gpt-index is not async or parallel by default in its operations or network communications. We need to ensure that all other logic that we have is parallel a... | 0easy |
Title: Burstiness metric API
Body: The canonical definition is here: https://chaoss.community/?p=3447 | 0easy |
Title: Potential typo bug in pywinauto top-level file.
Body: Line 91 in `pywinauto/__init__.py` we have this code which looks like a typo ("ElementNotFoundError = findwindows.ElementNotFoundError" is duplicated as is), wasn't it supposed to be WindowNotFoundError instead ?
```
WindowAmbiguousError = findwindows... | 0easy |
Title: 🐛fix some error messages
Body: ## Bug Report
To display some error messages, we are doing a condition on the error message that we get from the backend. It is error prone because the backend error message are internationalized.
## What to do
Find another way to display clean error message (code status ... | 0easy |
Title: [BUG] 'Settings' object has no attribute 'LANGUAGE_COOKIE_HTTPONLY' with django-cms 3.10 and django 2.2
Body: <!--
Please fill in each section below, otherwise, your issue will be closed.
This info allows django CMS maintainers to diagnose (and fix!) your issue
as quickly as possible.
-->
## Description
... | 0easy |
Title: Dashboard product list is unusable if an image is missing
Body: ### Issue Summary
Thanks for introducing the thumbnailing abstraction. It's something we've always wanted to do! Unfortunately, I think I found a small regression.
On one of my Oscar staging sites, not all images that are in the database are a... | 0easy |
Title: cli should suggest the appropriate command if there's a typo
Body: e.g.:
```
ploomber exemples
```
Print:
```
'ploomber exemples' is not a valid command. did you mean 'ploomber examples'?
``` | 0easy |
Title: Add CodeClimate
Body: E.g. If we look at https://github.com/trailofbits/protofuzz we can see the test coverage at the top and a link to code climate.
To fix this we more or less copy the codeclimate.yml and relevant parts of the top of the README.
(So the [easy] issues are good for new people who want to s... | 0easy |
Title: [ISSUE] Bot responds to system message and other bots' message
Body: **Describe the bug**
in /index talk and / internet chat Bot responds to system message and other bots' message. Resulting in not able to change thread's name or generating irrelevant responses to other bots message.
**Expected behavior**
B... | 0easy |
Title: Naked `.. code-block:: bash` in some places throughout docs
Body: ## Issue
From [**Overriding configuration from the command line**](https://tox.wiki/en/latest/config.html#overriding-configuration-from-the-command-line):
:
File "C:\Users\ZHENGJ\AppData\Local\Programs\P... | 0easy |
Title: Inconsistent validation with complex number
Body: ### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
A field expecting a list of float number is valid for a numpy array of complex number, but a field expecting a float number is not valid for a complex number.
I would expect the b... | 0easy |
Title: [BFCL] Get rid of legacy naming convention for LLM generated files
Body: For the BFCL when we generate the LLM output, we currently call the files `gorilla_openfunctions_v1_*`. We should get rid of this additional prefix which is vestigial. | 0easy |
Title: UIA: Make set_value method available for EditWrapper or for any element with ValuePattern
Body: This was found in issue #590. Currently we have to use `.iface_value.SetValue("some value")`. | 0easy |
Title: Invalid sections are not represented properly in parsing model
Body: Consider the following test suite:
```
*** Test cases ***
Test
Log 1
*** invalid section ***
Something
```
This will produce following AST:
```
File(
source='/Users/jth/Code/robotframework/tmp/foo.robot',
langua... | 0easy |
Title: Drop `cv2` from dev dependencies
Body: ## 🚀 Feature
The cv2 package is just used in one place at tests. So, we can figure out how to test the case without it
https://github.com/kornia/kornia/blob/216aa9d2f10f9300bffe952b1583f03b7f833be5/test/io/test_io_image.py#L4
## Motivation
reduce the number of depend... | 0easy |
Title: tox-docker configuration parsing broken since tox 4.0.13
Body: ## Issue
tox-docker plugin configuration parsing of `ports` is broken since tox 4.0.13.
`ports` configuration option is documented as:
> A multi-line list of port mapping specifications, as `HOST_PORT:CONTAINER_PORT/PROTO`, ...
With 4.0.... | 0easy |
Title: tox does not work on my Windows environment due to char-code incorrespondence
Body: ## Issue
tox does not work due to try to read with invalid encoding (try to read "UTF-8" but actual encoding is "sjis")
```
py39: commands succeeded
lint: commands succeeded
ERROR: strictlint: undefined
Traceback ... | 0easy |
Title: `--removekeywords passed` doesn't remove test setup and teardown
Body: I'm using the following commands `rebot --removekeywords passed --output removed.xml output.xml`.
**Robotframework** and **Rebot** version is `6.1`
- It's work for `Suite Setup` and `Suite Teardown` but it's doesn't work in `Test Setup` a... | 0easy |
Title: mouse.wait_for_click should have a return code like the keyboard counterpart
Body: ## Classification:
Feature (New)
## Reproducibility:
Always
## Version
AutoKey version: 0.95.10
Used GUI (Gtk, Qt, or both): Gtk (Gnome)
Installed via: (PPA, pip3, …). Honestly can't remember.
Linux Distri... | 0easy |
Title: Loudly deprecate `[Return]` setting
Body: We added the `RETURN` statement to replace the `[Return]` setting in RF 5.0 (#4078). The reason was that the setting has various limitations explained in the aforementioned issue. At the moment the old setting still works and there's no visible deprecation warning. I bel... | 0easy |
Title: Notify the user to activate MANAGE_EXTERNAL_STORAGE
Body: **Describe the enhancement you'd like**
It looks like you can only activate MANAGE_EXTERNAL_STORAGE in the settings. Notify the user to do that, if he wants to delete backed up images.
**Describe why this will benefit the LibrePhotos**
This will lead... | 0easy |
Title: Markeplace - Reduce the size of the top menu bar, change the font size & the height of the bar to 64px
Body:
### Describe your issue.
Reduce the size of the top menu bar, change the font size & the height of the bar to 64px.
The menu items should be using h4 text style
font: Poppins
font size: 20
l... | 0easy |
Title: Change sudo apt to sudo apt-get in the source code
Body: ### AutoKey is a Xorg application and will not function in a Wayland session. Do you use Xorg (X11) or Wayland?
Xorg
### Has this issue already been reported?
- [X] I have searched through the existing issues.
### Is this a question rather than... | 0easy |
Title: client_session: <aiohttp.client.ClientSession object at 0x7f3307f050d0>
Body: hello, when i run clairvoyance on some targets like this (https://ctm-cssit-ps3-dmz.us.dell.com/) i got and error, how can i fix it ?
error :
root@aliwjpi:# clairvoyance "https://ctm-cssit-ps3-dmz.us.dell.com/graphql" -o schema.jso... | 0easy |
Title: Logging unexecuted keyword has unnecessary overhead if keywords are not found
Body: In an initial effort to make my testing repo compatible with both SeleniumLibrary and Browser, I added some conditional logic to run specific keywords based on the library chosen at test execution. More specifically, I used a glo... | 0easy |
Title: Input: add support for disabled Attribute
Body: As the title suggests, it would be really nice to add the attribute disabled for input. Maybe also to other components (button etc) | 0easy |
Title: [new] `are_arrays_equal(array1, array2)`
Body: convert arrays to json_string before comparing them as indicated here
https://stackoverflow.com/questions/68398759/check-if-two-arrays-are-exactly-the-same-in-bigquery-merge-statement | 0easy |
Title: `nest_joins` only works if `join_prefix` is set
Body: **Describe the bug or question**
Attributes from a joined model are not nested if no `join_prefix` is set
**To Reproduce**
Consider two simple models, `Hero` and `Ability`
```python
class Ability(Base, UUIDMixin, TimestampMixin, SoftDeleteMixin):
... | 0easy |
Title: Improve installation instructions / debugging UX
Body: * Improve readme
* Add warning if lux-widget extension is not installed.
* Check if extension is enabled.
* Add a `lux.debug_info` function that returns relevant package versions. | 0easy |
Title: pyproject.toml uses non-public __legacy__ setuptools backend
Body: * gevent version: git (as of beb98ce4742181caaa6cec9cedecaaa2a04f910b)
* Python version: n/a
* Operating System: Gentoo Linux
### Description:
Per https://github.com/pypa/setuptools/issues/1689:
> `setuptools.build_meta:__legacy__` wa... | 0easy |
Title: `WoEEncoder` should return a list with all the variables that have 0 in the denominator of the WoE
Body: At the moment, the transformer fails when it encounters one variable with 0 in the denominator of the WoE formula. We would like it to assess and raise an error with all the variables that show this behaviour... | 0easy |
Title: MACD Wilders
Body: Howdy. I notice you have a MACD indicator here... is there instructions somewhere to manipulate this to become Wilders? I think by default this is simple or exponential. I was wondering if there was a Wilders one that could be used. Or if we can manipulate the macd.py to become Wilders. Th... | 0easy |
Title: Test Gunicorn Worker
Body: The idea here is to create a setup to test the `gunicorn` worker classes that we have.
I don't know how is the best way to achieve this, as [`gunicorn` test suite](https://github.com/benoitc/gunicorn/tree/master/tests) didn't give me much insight on how we can test this integration ... | 0easy |
Title: Issue when commuting moments
Body: **Description of the issue**
Cirq gives the wrong result when determining whether moments commute if the individual operators within the moments do not commute, but the moment as a whole still commutes. For example, take a pair of single qubit Z gates and a two qubit RXX gate.... | 0easy |
Title: Feature: Allow broker creation in on_startup hook
Body: For some reason, I need to delay the creation of an app's broker in an `on_startup` hook. This is mainly because my application has a pretty heavy warmup bootstrap that loads a lot of data into memory so I need to delay this bootstrap (which actually includ... | 0easy |
Title: Confusing AttributeError raised when elements can't be found
Body: Splinter raises some hard to diagnose errors like: `AttributeError: 'ElementList' object has no attribute 'click'`
This is caused by the following code:
```
element_list = browser.find_by_id("#non-existing")
element_list.click()
```
Thi... | 0easy |
Title: Bug: Long texts length is not matching output area in Jupyter
Body: <!-- Please use the appropriate issue title format:
BUG REPORT
Bug: {Short description of bug}
SUGGESTION
Suggestion: {Short description of suggestion}
OTHER
{Question|Discussion|Whatever}: {Short description} -... | 0easy |
Title: [k8s] Local K8s cluster doesn't work with GPU models containing numbers only.
Body: I followed the troubleshooting guides to check GPU support:
https://docs.skypilot.co/en/latest/reference/kubernetes/kubernetes-troubleshooting.html#checking-gpu-support
- Step B0 - Is your cluster GPU-enabled? ✅
```
llc@LLC:~$ ... | 0easy |
Title: Improvements to PosTagVisualizer
Body: In #768 we rebooted the part-of-speech tag visualizer to make it more practical for NLP machine learning tasks. Here are a few ideas for follow-up features that could be added:
- [x] optional ordering of the plot by tag count (similar to a frequency distribution). _Note:... | 0easy |
Title: Strict mode (explicit syntax)
Body: As we know from [Python-mode vs Subprocess-mode](https://xon.sh/tutorial.html#python-mode-vs-subprocess-mode):
> Take the case of `ls -l`. This is valid Python code, though it could have also been written as `ls - l` or `ls-l`. So how does xonsh know that `ls -l` is meant t... | 0easy |
Title: [BUG] dataset link is broken
Body: I try to run the example [here](https://unit8co.github.io/darts/examples/14-transfer-learning.html) but the dataset link is broken. May you fix the link? Thank you!
~~~~
!curl -L https://github.com/unit8co/amld2022-forecasting-and-metalearning/blob/main/data/m3_dataset.xls\... | 0easy |
Title: improve error message when pipeline.yaml does not exist
Body: If a user runs any ploomber command and passes `-e pipeline.yaml` in a directory that doesn't have such a file, the error isn't very clear:
```sh
ploomber status -e pipeline.yaml
```
```pytb
Traceback (most recent call last):
File "/Users/... | 0easy |
Title: WHILE and TRY content are not removed with `--removekeywords all`
Body: Older FOR and IF structures are handled properly, but enhancing `--removekeywords` was apparently forgotten when WHILE and TRY were introduced. Other control structures cannot have body in data, but it's possible that e.g. listeners log some... | 0easy |
Title: `Log Variables` should not consume iterables
Body: Found in Robot Framework 6.1.1 and 7.0rc2
Python 3.11
Given this example:
```
Cycle Test
${TEST_LIST} Create List beginning 1 2 3 4 end
${CYCLE_TEST} Evaluate itertools.cycle($TEST_LIST)
Set Test Variable ${CYCL... | 0easy |
Title: Add metatags for into the pages docs
Body: ## 📚 Documentation
Following the instruction from https://docs.readthedocs.io/en/stable/guides/technical-docs-seo-guide.html#use-meta-tags
we should add at least the description for the top pages of each module of kornia. This will help the SEO
- [ ] Augmnetat... | 0easy |
Title: Correct price reporting for GPT-4
Body: Nothing accounts for GPT-4 pricing right now, need to add GPT-4 pricing. | 0easy |
Title: 部分格式链接无法解析
Body: 不可解析的链接如下
`https://www.xiaohongshu.com/explore/66bf0663000000001e019e8c`
不携带xsec_token无法解析

可以解析的链接如下
`https://www.xiaohongshu.co... | 0easy |
Title: Pipeline can't be run with env file having .yml suffix
Body: ### Description
Pipeline can't be run with `env.yml` file. It seems it won't get read at all since variables stated in the `env.yml` are unknown to the pipeline run. Renaming file to `env.yaml` solved the issue for me.
### Replication
Files for r... | 0easy |
Title: Remove support for dupefilters without a fingerprinter
Body: Deprecated in 2.7.0. | 0easy |
Title: Improve docs regarding error reporting under asgi; add FAQ item
Body: Hello, I feel like i am missing something because falcon/uvicorn doesn't show any error traceback when there's a server error. Why is that? Just to note, i've used Flask for almost five years and am now migrating to falcon, so i have never use... | 0easy |
Title: DAGMapping should ignore non-notebook tasks
Body: DAGMapping currently creates a map of all tasks but it should only do so for notebook/script tasks. e.g., ignore tasks whose source is a function or a SQL script:
Essentially we want to move the `pairs` iteration logic inside the `DAGMapping` constructor:
h... | 0easy |
Title: [DOC] API Documentation for Chemistry functions is not standardized
Body: # Brief Description of Fix
<!-- Please describe the fix in terms of a "before" and "after". In other words, what's not so good about the current docs
page, and what you would like to see it become.
Example starter wording is provid... | 0easy |
Title: Historical Versions fixing `tensroflow-gpu`
Body: **Current State:** With the recent change to `tensorflow-gpu` in version 2.12, there are now issues with installing prior version of the `dataprofiler` package with `pip`.
**Desired State**: ability to resolve prior versions of the Data Profiler such that the... | 0easy |
Title: [Examples] Move pip installs to uv for faster setup
Body: Move our examples that has long setup time to use `uv` to reduce cold start time. | 0easy |
Title: [new] `remove_value(arr, value)`
Body: returns an array with all values except value.
Get inspired from https://stackoverflow.com/questions/68580397/bigquery-udf-remove-from-array-how-do-i-anonymously-reference-an-element-in-a-s | 0easy |
Title: fix pygraphviz installation issue
Body: See https://github.com/ploomber/ploomber/issues/538
recent versions of pygraphviz only work with python 3.8 and higher, however, they didn't pin the dependency and raise an error instead. we should find what's the most recent version that works with python 3.7 and lower... | 0easy |
Title: Add support for Ordinal Classification/Regression tasks
Body: This is fairly straightforward extension of the current cleanlab functionality. Contributors welcomed! | 0easy |
Title: bug: The output from the UpdateTable command does not include the SSEDescription
Body: ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
The output from the UpdateTable command does not include the SSEDescription for a table which was created with it.
###... | 0easy |
Title: Synchronous spinner
Body: Support synchronous spinners which switch frames upon explicit request from a working thread like.
```python
with Halo(spinner='dots') as spinner:
for f in files_to_load():
spinner.next(text="Loading %s" %f) # or .step(), or .tick(), or…
do_load_file(f)
```
This can (... | 0easy |
Title: Marketplace - creator page - change font of creator's user name
Body: ### Describe your issue.
Please change font to the "lead" style in the typography sheet linked: https://www.figma.com/design/Ll8EOTAVIlNlbfOCqa1fG9/Agent-Store-V2?node-id=2759-9596&t=2JI1c3X9fIXeTTbE-1
Currently this section is using PP... | 0easy |
Title: Enhancement: Be able to create new entity cloning existing one
Body: **Is your feature request related to a problem? Please describe.**
We need to create new records, just like existing ones but 3 or 4 fields need to be changed. It is very tedious to create a new entity and type everything (copy/paste). Especia... | 0easy |
Title: Examples for documentation
Body: We need some new examples, they are in the [projects](https://github.com/ploomber/projects) but I'm linking them here for exposure:
1. https://github.com/ploomber/projects/issues/13
2. https://github.com/ploomber/projects/issues/12
3. https://github.com/ploomber/projects/iss... | 0easy |
Title: Add type information to the visitor API
Body: Visitor methods currently look like
```python
class SuiteVisitor:
def visit_suite(self, suite):
...
```
but we should change them to
```python
from robot.model import TestSuite
class SuiteVisitor:
def visit_suite(self, suite: TestSui... | 0easy |
Title: Add logging tests
Body: This problem (https://github.com/wemake-services/wemake-django-template/commit/53ae125a0e2eed88f7b36a5edd07591ba0401b24) identified that our logging configuration was and is not tested at all.
We need to add tests for it:
- We need to test regular logging format
- We need to test exc... | 0easy |
Title: Docstring of `color.hsv_value` is incomplete
Body: ## Description
`color.hsv_value` is incomplete:
https://github.com/scikit-image/scikit-image/blob/09577eddf2ce0376b25b96291599af313adb1c2d/skimage/color/adapt_rgb.py#L48-L59
`args` and `kwargs` should be documented as well as the return value. It could ... | 0easy |
Title: alma doesnt apply distribution_offset
Body: when i set offcet still the column name is 0.85
```python
length=30
distribution_offset=0.5
MyStrategy = ta.Strategy(
name="test",
ta=[
{"kind": "alma", "length": length, "distribution_offset":distribution_offset},
]
)
df.ta.study(MySt... | 0easy |
Title: `decomposition.umap_reconstruction.UMAPOutlierDetection`
Body: | 0easy |
Title: Improve property-based test for near-duplicate sets
Body: Property-based tests for near-duplicate sets are randomly failing in CI, when some health-checks don't pass for generated data.
# Stack trace
<!-- If applicable, please include a full stack trace here. If you need to omit
the bottom of the stack trac... | 0easy |
Title: Update Jupyter notebook examples
Body: With `v0.3.0`, the Jupyter notebook examples are now outdated. It should be trivial to change the examples to the `v0.3.0` format. | 0easy |
Title: add RandomizedSearchCV params for regressors
Body: | 0easy |
Title: Back navigation does not work properly in HTML outputs (log, report, Libdoc)
Body: We are just Upgrading from 3.x to 6.0.2.
Getting back to report.html from log.html requires 3 clicks on Back button. This is quite irritating.
Steps to reproduce:
1) from testreport.html, open a testcase. This takes to log.... | 0easy |
Title: SQLAlchemy + Flask Tutorial
Body: Following the tutorial provided at https://docs.graphene-python.org/projects/sqlalchemy/en/latest/tutorial/
using Python 2.7, ran into an error:
AssertionError: Found different types with the same name in the schema: EmployeeConnection, EmployeeConnection.
Upon investigat... | 0easy |
Title: Add Beit segmentation model
Body: # Add Beit to SMP
BEiT-3 is a general-purpose multimodal foundation model developed by Microsoft that excels in various vision and vision-language tasks, including semantic segmentation. It employs a unified architecture with Multiway Transformers, enabling both deep fusion a... | 0easy |
Title: outdated install guide needs to be removed
Body: This can be found along the docs and it should point to the quick-start guide. We need to update those. https://docs.ploomber.io/en/latest/get-started/install.html | 0easy |
Title: Autokey gentoo layman
Body: ## Classification: Crash
(Pick one of: Bug, Crash/Hang/Data Loss, Performance, UI/Usability, Feature (New), Enhancement)
## Reproducibility: Always
(Pick one of: Always, Sometimes, Rarely, Unable, I Didn't Try)
## Version
AutoKey version: desktop automation utility for ... | 0easy |
Title: Create Standard Deviation for Linear Regression
Body: I needed to have standard deviation for linear regression and there was not function for it. so i coded it and if you like you can edit it and add to next version.
```python
def stdevlinreg(close, length: int):
x_value = close
stdev = close
... | 0easy |
Title: Add ability to configure git branch
Body: | 0easy |
Title: 专业版的分销是用不了,项目是不是不维护了
Body: 1. BUG反馈请描述最小复现步骤
2. 普通问题:99%的答案都在帮助文档里,请仔细阅读https://kmfaka.baklib-free.com/
3. 新功能新概念提交:请文字描述或截图标注
| 0easy |
Title: Don't run check-release on release
Body: ## Description
This is what our `check-release` workflow looks like:
```
name: Check Release
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
release:
types: [published]
schedule:
- cron: "0 0 * * *"
```
The problem is th... | 0easy |
Title: ImageClassifier no longer has final_fit (AttributeError: 'ImageClassifier' object has no attribute 'final_fit')
Body:
### Bug Description
---------------------------------------------------------------------------
AttributeError: 'ImageClassifier' object has no attribute 'final_fit'
------------------------... | 0easy |
Title: Check for shape consistency between model and guide
Body: In SVI latent random variables sampled from the guide completely mask those sampled in the model during inference. However, nothing prevents us from specifying different shapes for such a sample site in model and guide respectively. This makes it easy to ... | 0easy |
Title: [Feature] Add examples for token in token out for LLM
Body: ### Checklist
- [x] 1. If the issue you raised is not a feature but a question, please raise a discussion at https://github.com/sgl-project/sglang/discussions/new/choose Otherwise, it will be closed.
- [x] 2. Please use English, otherwise it will be cl... | 0easy |
Title: Moment.resolve_parameter not resolving all the expressions
Body: **Description of the issue**
**How to reproduce the issue**
```python
q0 = cirq.LineQubit(0)
c = cirq.Circuit(cirq.Rz(rads=sympy.Mul(sympy.Rational(2, 3), sympy.pi)).on(q0))
cirq.resolve_parameters(c, {'pi': np.pi})
```
results in:
``... | 0easy |
Title: `CountFrequencyEncoder` could have a parameter to group categories with few observations
Body: Useful to handle rare categories in highly cardinal variables.
If a category is present in less than a certain threshold of observations it should be replaced by a certain value. Check page 91 of Alice Zhengs book a... | 0easy |
Title: Marketplace - Fix margin underneath "Top agents" increase it to 37px
Body:
### Describe your issue.
Fix this margin, increase it to 37px

| 0easy |
Title: Considering any variable that has at least one upper case letter as env var
Body: ## Problem
If we define a var containing an upper case letter, like:
```yaml
vars:
apiKey: abc123
```
and we try to use it later as `${apiKey}` it will raise the error:
```
ERROR:scanapi.evaluators.string_evaluator:... | 0easy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.