Skip to content

Commit

Permalink
refactor: devcontainers support, were reformated files
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiiRepair committed Dec 3, 2023
1 parent 303322b commit aa94bfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ dist
.session.json

# Codesandbox Development
.devcontainer/
# .codesandbox/
# .devcontainer/

# vscode
.vscode/launch.json
Expand Down
3 changes: 2 additions & 1 deletion quotexpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ async def get_last_candles(self, symbol, interval):
last_candles = ticker.history(period="1d", interval=interval)
return last_candles


logging.basicConfig(
filename=".quotexpy.log",
format="[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s",
Expand All @@ -369,4 +370,4 @@ async def get_last_candles(self, symbol, interval):
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

__author__ = "Santiago Ramirez"
__author__ = "Santiago Ramirez"

0 comments on commit aa94bfd

Please sign in to comment.