pumaguard 21.post3__py3-none-any.whl → 21.post6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pumaguard/presets.py CHANGED
@@ -147,7 +147,6 @@ class Preset:
147
147
  self.play_sound = True
148
148
  self.volume = 80 # Volume level 0-100 for ALSA playback
149
149
  self.print_download_progress = True
150
- self.camera_url = "" # URL for external camera web interface
151
150
  self.cameras: list[dict[str, str]] = [] # List of detected cameras
152
151
  self.no_lion_directories: list[str] = []
153
152
  self.validation_no_lion_directories: list[str] = []
@@ -296,7 +295,6 @@ class Preset:
296
295
  self.print_download_progress = settings.get(
297
296
  "print-download-progress", True
298
297
  )
299
- self.camera_url = settings.get("camera-url", "")
300
298
  self.cameras = settings.get("cameras", [])
301
299
 
302
300
  def save(self):
@@ -326,7 +324,6 @@ class Preset:
326
324
  "deterrent-sound-file": self.deterrent_sound_file,
327
325
  "play-sound": self.play_sound,
328
326
  "volume": self.volume,
329
- "camera-url": self.camera_url,
330
327
  "alpha": self.alpha,
331
328
  "batch-size": self.batch_size,
332
329
  "color-mode": self.color_mode,