diff options
Diffstat (limited to 'src/YtdlpWrapper.hpp')
-rw-r--r-- | src/YtdlpWrapper.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/YtdlpWrapper.hpp b/src/YtdlpWrapper.hpp index a9522ea..6cc045d 100644 --- a/src/YtdlpWrapper.hpp +++ b/src/YtdlpWrapper.hpp @@ -6,10 +6,10 @@ class YtdlpWrapper { public: - YtdlpWrapper(); nlohmann::json getJsonSearch(const string& searchTerm); private: - pybind11::object ytdl; + pybind11::object get_ytdl(); + pybind11::object ytdl = pybind11::none(); }; |