Skip to content

Commit

Permalink
fixed some small findinds in config
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaron committed Dec 15, 2024
1 parent 08911a0 commit e1bb5d0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
12 changes: 1 addition & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,5 @@
"python.testing.unittestEnabled": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"pylint.ignorePatterns": [
"*samples/*.py"
],
"flake8.ignorePatterns": [
"*samples/*.py"
],
"python.analysis.exclude": [
"**/samples", "**/Interactive*.py"
],
"python.analysis.typeCheckingMode": "standard"
}
}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ignore = ["F401"]

[tool.pyright]
reportOptionalOperand = "none"
typeCheckingMode = "standard"

[project]
name = "roboquant"
Expand Down
2 changes: 2 additions & 0 deletions roboquant/alpaca/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from roboquant.alpaca.feed import AlpacaLiveFeed, AlpacaHistoricCryptoFeed, AlpacaHistoricStockFeed
from roboquant.alpaca.broker import AlpacaBroker

__all__ = ["AlpacaLiveFeed", "AlpacaHistoricCryptoFeed", "AlpacaHistoricStockFeed", "AlpacaBroker"]
2 changes: 2 additions & 0 deletions roboquant/brokers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from .broker import Broker
from .simbroker import SimBroker

__all__ = ["Broker", "SimBroker"]
2 changes: 2 additions & 0 deletions roboquant/traders/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from .trader import Trader
from .flextrader import FlexTrader

__all__ = ["Trader", "FlexTrader"]

0 comments on commit e1bb5d0

Please sign in to comment.