remove emojis from console
This commit is contained in:
@@ -30,10 +30,10 @@ async def example_realtime_data():
|
||||
success = await data_provider.enable_unified_storage()
|
||||
|
||||
if not success:
|
||||
print("❌ Failed to enable unified storage")
|
||||
print(" Failed to enable unified storage")
|
||||
return
|
||||
|
||||
print("✅ Unified storage enabled")
|
||||
print(" Unified storage enabled")
|
||||
|
||||
# Get latest real-time data
|
||||
print("\n2. Getting latest real-time data...")
|
||||
@@ -261,11 +261,11 @@ async def main():
|
||||
await example_statistics()
|
||||
|
||||
print("\n" + "="*60)
|
||||
print("✅ All examples completed successfully!")
|
||||
print(" All examples completed successfully!")
|
||||
print("="*60 + "\n")
|
||||
|
||||
except Exception as e:
|
||||
print(f"\n❌ Error running examples: {e}")
|
||||
print(f"\n Error running examples: {e}")
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user