Skip to content

Commit

Permalink
fix deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousme committed Mar 6, 2024
1 parent 2abfca2 commit a1e099c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mqttConn/mqttConn.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MqttConn, MqttConnError } from "./mqttConn.ts";
import { assertEquals, DummyConn } from "../dev_utils/mod.ts";
import { PacketType, AnyPacket, encode } from "../mqttPacket/mod.ts";
import { AnyPacket, encode, PacketType } from "../mqttPacket/mod.ts";

const connectPacket: AnyPacket = {
type: PacketType.connect,
Expand Down
2 changes: 1 addition & 1 deletion mqttConn/mqttConn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
LengthDecoderResult,
} from "../mqttPacket/mod.ts";

import { assert } from "../utils/mod.ts"
import { assert } from "../utils/mod.ts";

export type SockConn = {
readable: ReadableStream<Uint8Array>;
Expand Down

0 comments on commit a1e099c

Please sign in to comment.