wfork-streamlit-profiler 1.4.1__tar.gz → 1.4.2__tar.gz

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.
Files changed (14) hide show
  1. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/PKG-INFO +1 -1
  2. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/pyproject.toml +1 -1
  3. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/__init__.py +1 -1
  4. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/LICENSE +0 -0
  5. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/README.md +0 -0
  6. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/.gitignore +0 -0
  7. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/.name +0 -0
  8. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/inspectionProfiles/Project_Default.xml +0 -0
  9. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  10. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/misc.xml +0 -0
  11. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/modules.xml +0 -0
  12. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/vcs.xml +0 -0
  13. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/.idea/wfork_streamlit_profiler.iml +0 -0
  14. {wfork_streamlit_profiler-1.4.1 → wfork_streamlit_profiler-1.4.2}/wfork_streamlit_profiler/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wfork-streamlit-profiler
3
- Version: 1.4.1
3
+ Version: 1.4.2
4
4
  Summary: (fork of) Runtime profiler for Streamlit, powered by pyinstrument
5
5
  License: MIT
6
6
  Author: Wyatt S Carpenter
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "wfork-streamlit-profiler"
3
- version = "1.4.1"
3
+ version = "1.4.2"
4
4
  description = "(fork of) Runtime profiler for Streamlit, powered by pyinstrument"
5
5
  authors = [
6
6
  {name = "Wyatt S Carpenter"},
@@ -19,7 +19,7 @@ class Profiler(OriginalProfiler):
19
19
  self._auto_output_on_stop = auto_output_on_stop
20
20
 
21
21
  @override
22
- def stop(self) -> Session: #type: ignore[override-error, unused-ignore] #workaround for: https://github.com/google/pytype/issues/1917
22
+ def stop(self) -> Session: #pytype: disable=override-error #workaround for: https://github.com/google/pytype/issues/1917
23
23
  session = super().stop()
24
24
 
25
25
  if self._auto_output_on_stop: