Skip to content

Commit

Permalink
🤖 Automatic code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
splitbrain authored and github-actions[bot] committed Mar 18, 2024
1 parent edf6990 commit bfd7d9b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Storage/PineconeStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function deletePageChunks($page, $firstChunkID)
$this->runQuery('/vectors/delete', ['ids' => $ids]);
} catch (\Exception $e) {
// 5 is the code for "namespace not found" See #12
if($e->getCode() !== 5) throw $e;
if ($e->getCode() !== 5) throw $e;
}
}

Expand Down
1 change: 0 additions & 1 deletion helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ public function getLanguageLimit()
/**
* Store info about the last run
*
* @param array $data
* @return void
*/
public function setRunData(array $data)
Expand Down

0 comments on commit bfd7d9b

Please sign in to comment.