Skip to content

Commit

Permalink
format config
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Oct 14, 2024
1 parent 96f926a commit d0518fa
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions fiftyone/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,16 @@ def __init__(self, d=None):
default=None,
)
self.enable_query_performance = self.parse_bool(
d, "enable_query_performance",
env_var="FIFTYONE_APP_ENABLE_QUERY_PERFORMANCE", default=True
d,
"enable_query_performance",
env_var="FIFTYONE_APP_ENABLE_QUERY_PERFORMANCE",
default=True,
)
self.default_query_performance = self.parse_bool(
d, "default_query_performance",
env_var="FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE", default=True
d,
"default_query_performance",
env_var="FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE",
default=True,
)
self.loop_videos = self.parse_bool(
d,
Expand Down

0 comments on commit d0518fa

Please sign in to comment.